
CMake
SoftwareWikipedia
19
MENTIONS
9
EPISODES
8
PODCASTS
Search complete. 19 mentions across 9 episodes found for "CMake".
Sep 7, 2026
Nix Freaks 47
J
65:16Jonathan RingerGUEST
I don't know how I feel about that.
J
65:18Jonathan RingerGUEST
At least the example that you're doing here is CMake.
J
65:21Jonathan RingerGUEST
And if you include or remove files, then it should change the behavior of the configure phase.
T
65:32Tom BereknyeiGUEST
At least
J
65:51Jonathan RingerGUEST
you can still trick it.
J
65:52Jonathan RingerGUEST
So one example.
J
65:54Jonathan RingerGUEST
The reason why I brought up CMake though is that best practice in CMake is generally when you're defining a target, so executable or a library, generally you're supposed to hard code in the library paths.
J
66:03Jonathan RingerGUEST
And so then it will automatically do a CMake reconfigure if you add or remove a file, right? Whereas if you do something like globbing, then it doesn't actually become aware of when like additions or removals occur.
P
Unknown podcast
Why Zig Is the C Replacement Everyone Is Watching
Aug 31 · 1 Mention
L
3:43LucasHOST
You write a build.zig file and you get a cross-compiler that can target any platform from any platform.
L
3:49LucasHOST
You don't need a build system generator like CMake.
L
3:53LucasHOST
You just run zig build and it works.
L
3:55LucasHOST
That's a huge deal for maintainers who are tired of wrestling with build configurations.
Jason Rohrer and his rocket chess piece
L
39:57Lukasz ScigaHOST
So, This would be like a turn off for you, I guess.
L
40:01Lukasz ScigaHOST
Because you need to have a CMake-based project, basically.
L
40:05Lukasz ScigaHOST
You can't just have your
J
40:06Jason RohrerGUEST
own build script that CLion will call?
150,000 Commits Later
B
23:04BenjaminHOST
But yeah, a lot of stuff is possible.
B
23:06BenjaminHOST
Until earlier this week, for all of this to work, you had to first pre-initialize your build folder with some CMake magic so that CMake would have some metadata available to use the so-called CMake file API.
B
23:28BenjaminHOST
I think that's what it's called.
B
23:30BenjaminHOST
And so you have to do this first and put some, yeah, whatever, do some magic there.
B
23:36BenjaminHOST
Now, given that we use a slightly newer version of CMake, this is not needed anymore.
B
23:41BenjaminHOST
So you don't have to do west spdx dash dash init anymore.
B
23:46BenjaminHOST
You can start with a vanilla.
The Future Of Linux Core Utils Is Rust | Sylvestre Ledru
S
35:17Sylvestre LedruGUEST
Like, if you have done any cross-platform development with C and C++, I like to, to ask people, like, think about you want to do a program that depend on an XML parser, and, uh, so you can do it on Linux.
S
35:31Sylvestre LedruGUEST
Like, you are going to use CMake.
S
35:32Sylvestre LedruGUEST
You know, okay, on Mac it's going to probably work fine.
S
35:35Sylvestre LedruGUEST
And then if you want to port it to a Windows or Android or FreeBSD, and now it is a time where you start crying because you don't know how to declare the dependency against the C and C++ library.
Building with AI, DuckDB + RDF, and the Semantic Future w/ Dan Bennett (Head of Tech @ S&P Global)
D
2:31Dan BennettGUEST
And that would be good as a feature for me to learn, and it would also be good as a way for me to understand what's happening with all this Gen AI software engineering stuff, because Ultimately, I felt as a leader, I've got a large engineering function underneath me.
D
2:48Dan BennettGUEST
If I can't live that experience of how our careers are changing, how that role is changing, then how can I sort of lead for it? I started out super slowly, like trying to remember how Make works and CMake and all of this kind of stuff.
D
3:05Dan BennettGUEST
It was really, really painful.
D
3:07Dan BennettGUEST
And if you look at the commit history on GitHub, you can absolutely see that I was in pain last summer trying to work this stuff through.
P
Unknown podcast
AI News — August 24, 2026: Anthropic's Fable Loses Mass Market to Cheaper Rivals, Ox Alpha Surfaces Unsigned
Aug 24 · 3 Mentions
S
0:04speaker_0HOST
Frontier models are impressive but expensive and constrained, while smaller, cheaper, and local alternatives are quietly eating tasks people didn't think they could.
S
0:12speaker_0HOST
Add in a mystery model on OpenRouter and someone implementing GPT-2 in CMake, and it's a fairly representative slice of where things stand.
S
0:22speaker_0HOST
Anthropic's premium model isn't converting to premium revenue.
S
0:25speaker_0HOST
The Financial Times reports that Anthropic's flagship Fable model, widely seen as technically ahead, is struggling to attract paying users while cheaper competitors clean up the mass market.
S
4:40speaker_0HOST
The audio and brain run on an M4 MacBook, while the game runs on Windows.
S
4:44speaker_0HOST
Commenters mostly agreed this is what NPCs should look like from now on, and speculated about dedicated AI silicon in future consoles.
S
4:53speaker_0HOST
And in the why not department, someone implemented GPT-2 as pure CMake, using Q16.
S
4:59speaker_0HOST
16 fixed-point arithmetic and relegating Python to build tool duty.
UBSan, ASan, and the Other San
B
26:36BenjaminHOST
A quick mention.
B
26:38BenjaminHOST
Most people probably don't realize or necessarily care directly, but we bumped the minimum required version of CMake to sort of align with what's widely available in common distros out there.
B
26:55BenjaminHOST
So it went from 3.20 to 3.28. It's still super conservative.
B
27:02BenjaminHOST
I think 328 is still from three years ago almost.
B
27:07BenjaminHOST
But this actually brings us a couple improvements from the CMake project.
B
27:15BenjaminHOST
There's one that I was actually personally really interested in that will help make the SPDX SBOM tooling more straightforward.
F
27:25FabioHOST
I
B
27:56BenjaminHOST
Yes, exactly.
528: Build, Ship, Repeat: AI Tools Changing App Development
F
24:59Frank KruegerHOST
Everyone hates tar balls.
F
25:01Frank KruegerHOST
No one wants to run compilers from the command line and running configure and installing CMake.
F
25:07Frank KruegerHOST
Ain't no one wants to do any of that stuff.
F
25:11Frank KruegerHOST
I can say all of that and still say I hate Homebrew.