Modern CMake for C++

  Переглядів 35,537

Smok Code

Smok Code

День тому

How to build a simple C++ project with CMake? What about advanced projects?
#programming #tech #softwaredevelopment #cmake #cpp
Codes are valid till 26th March 2022!!!
Packtpub.com
www.packtpub.com/product/mode...
Discount code: RAFAL25
Amazon.com
www.amazon.com/gp/mpc/A18ARUG...
Discount code: 25RAFAL

КОМЕНТАРІ: 79
@goodkidsincity
@goodkidsincity Рік тому
I've been reading your book. Thank you for your work!
@StarContract
@StarContract 4 місяці тому
Do you guys really see no problem that a tool created to simplify the build process has a 400 page manual? 💀
@SmokCode
@SmokCode 4 місяці тому
What is the problem?
@poopingnuts
@poopingnuts 3 місяці тому
@@SmokCodeit’s just way too complex. Premake is much easier and simple to understand, learn, and write
@DaKeypunchAr
@DaKeypunchAr Місяць тому
@@poopingnuts i think you can't have more control in premake than in cmake i will buy that book and read it surely.
@SmokCode
@SmokCode Місяць тому
2nd edition is coming mid year!
@aleksandarglisic9384
@aleksandarglisic9384 26 днів тому
As software grows in capabilities it grows in complexity and build setups must deal with it. However, if you compress complexity at one end you will make room for more complexity at another end. The cycle is endless, there is no escape from the software samsara. But... for those of us who still want computers, gotta make do with 400 page manuals. That seems like a decent investment in front of endless hours of bestemmie one can get into by using other tools.
@mqumairi
@mqumairi 2 роки тому
Amazing! Congrats on the book Rafal. An invaluable contribution to the C++ community.
@chriscruz429
@chriscruz429 Рік тому
Ten pages a day times 46 days and boom, you’re done. About a month and a half and you can be fluent with CMake, worth it.
@nicodeguyoh66
@nicodeguyoh66 3 місяці тому
I'm doing undergrad research and I need to write c++ code with more industrial standards. this video was SO helpful, i feel like im going in the right direction. Thanks!
@OwenWorley1
@OwenWorley1 3 місяці тому
Great video, thanks! I have ordered your book and have added it to my companies recommended reading list, hopefully this will drive some additional orders!
@samdavepollard
@samdavepollard 4 місяці тому
that rare thing on youtube - someone who knows what they're talking about 🙂 many thanks
@chethans5908
@chethans5908 5 місяців тому
this video's 5-6 mins helped me a lot than lot of videos on youtube
@sunday-thequant8477
@sunday-thequant8477 9 місяців тому
next month i will get your book, im massive learning C++
@kingofdice66
@kingofdice66 Рік тому
Great book, can't recommend it enough!
@feraudyh
@feraudyh 5 місяців тому
Agreed
@elakstein
@elakstein 4 місяці тому
In my company we use make, what's the benefit of using cmake over c, and if the benefit is huge then why my company is sticking to nake ?
@foxxy4184
@foxxy4184 2 роки тому
BEST BOI CONFIRMED
@TheGwass
@TheGwass Рік тому
Really great book, started learning about CMake and stumbled upon this book recommended from a presentation I went to about it, and it's an amazing book and about so much more than CMake and a whole view of how building things in C++ work and what's involved in it, I'm definitely recommending this to my colleagues because it's a good resource for them to get a better view of everything involved in compilation/building and the pitfalls/issues and how to tune it alongside just learning proper CMake Ps: Any option to get non-expensive shipping to Belgium? I'd love to get a copy at my office for my colleagues but the shipping is like more than half the cost
@SmokCode
@SmokCode Рік тому
I'm glad you're enjoying the book! I don't know what book shops have their presence in Belgium, but some of the biggest ones have license to sell books from Packt in their countries. See if you can find any. Another solution might be buying on Belgian Amazon, which works great if you have a friend with Prime who could order the book for you. www.amazon.com.be/dp/1801070059 If all fails - maybe an ebook would be more suitable? Good luck with your C++!
@TheGwass
@TheGwass Рік тому
​@@SmokCode That works! Amazon had it too since they're in Belgium now. I just had one more question I didn't see addressed in your book and I'm having difficulties finding an answer for. How do you deal with targets with hundreds of source files you want to logically split up a bit as some components/folders might get extracted later on? A giant CMakeLists seems a bit icky, object libraries didn't seem to be a great solution either because then I need to link my interface library to every single one of those. So I don't really know if there's any other good constructs to make a sort of division within a single target
@SmokCode
@SmokCode Рік тому
Within a single target: you can define variables with filenames and add those to sources list. I'd recommend going with libraries though. If there is a logical relationship between files, it creates an opportunity to test them together in integration tests and writing them for smaller scopes is more manageable and quicker to codeloop.
@felixfigueroa
@felixfigueroa Рік тому
Excellent Focus, it's a great book..!
@miikavihersaari3104
@miikavihersaari3104 4 місяці тому
I use an sh-file (and on Windows a bat) that has the command to compile the project, including linking to libs. To further simplify compilation I have a single compilation unit that includes all the other c- or cpp-files.
@SmokCode
@SmokCode 4 місяці тому
I think you might be misusing the compiler a bit. If you're really including other CPP files, you're treating multiple compilation units as one. This means that a lot of code is being recompiled when it needn't. This approach may work for small projects, but as your codebase grows it slows down exponentially. Consider reading up on SOLID principles, you might be in for a treat!
@miikavihersaari3104
@miikavihersaari3104 4 місяці тому
@@SmokCode I was being general. I work in game development, and depending on project size I either have two compilation units, system and game, or four, system, graphics, audio and game. Here, system is an API layer I've written that connects the game code to the OS and hardware, and this almost never changes. Graphics, audio and game change often, but in small projects I put them into the same compilation unit. In small projects it takes less than a second to compile and link, and in larger projects so far it's always been less than 10 seconds. But even if I did full recompilations, it seems that the linker still takes almost half of the compilation time. SOLID consist of five principles, but I assume you're particularly referring to dependency inversion, since we're talking about project structuring? In game development it's mostly about knowing the hardware you're developing for, and knowing your data. In the cases where I need this kind of decoupling that DIP offers, I can just use a function pointer. Well, I guess that's a form of dependency inversion too. In general, I don't want to use principles that sacrifice runtime efficiency for a benefit that I can get in other ways. EDIT: I forgot to write that many projects I've seen are structured around an object oriented model, and there's a compilation unit for each different class, and there are dozens, maybe even hundreds, or in large projects thousands of classes. I realize that having only one compilation unit per entire subsystem is very different and might seem strange :)
@user-qw9yf6zs9t
@user-qw9yf6zs9t 3 місяці тому
ive ordered this book a 2-3 weeks ago on amazon yet it has unfortunately not come yet, even admitting its late... dp you know why this is? im not here to rant id just lilke to really know
@user-hgkv65454s
@user-hgkv65454s Рік тому
good work, thanks
@joymakerRC
@joymakerRC Рік тому
imma buy it now
@feraudyh
@feraudyh 5 місяців тому
There is only one criticism I have of the book: spacing. The book has a crammed look, I feel it would be more attractive if there were more empty lines. I'm referring to the epub version as read by Sumatra.
@SmokCode
@SmokCode 5 місяців тому
I agree. I'll be sure to forward this comment to the publisher. There's a second edition coming up!
@feraudyh
@feraudyh 5 місяців тому
@@SmokCode just came down from my office where I was back to reading this incredibly helpful book.
@r2com641
@r2com641 Рік тому
It’s good that someone writes updated book but - Why would in 2023 I use archaic build system with autistic syntax language? What if we use xmake? Something based on real language and not as slow as Scons ?
@RussTeeTrombone
@RussTeeTrombone Рік тому
I’m here because I’ve been using your book. QQ - what’s your keyboard?
@rafaeldelpino2378
@rafaeldelpino2378 2 роки тому
When will give discount again? I loved It but dolar is Very expensive to us Brazilians 😭
@Loboid
@Loboid Рік тому
Same my country, 1 USD is 11.284 UZS for us, what cost is?
@jonas.caruaru
@jonas.caruaru Рік тому
Is true tho, i mean 6 bucks for 1 dollar is tooo much
@robertoze
@robertoze Рік тому
It is more than 400 pages, oh my GOD. What about premake?
@morales5731
@morales5731 2 роки тому
Zaufałem i zamówiłem jeden egzemplarz dla siebie :)
@kB-hg2ci
@kB-hg2ci Місяць тому
There are plenty of tutorials on cmake and I've scanned quite a few before this one. You answered the most important question within the first minute, what the fuck is a cmake anyways? Thank you
@stef2499
@stef2499 Рік тому
Hope your book is good, been struggling with cmake. Getting the ebook from university library, idk how you get payed by that but frankly i dont care.
@fredeisele1895
@fredeisele1895 Рік тому
Is there a way to get the ebook as both a pdf and kindle without buying the book twice?
@SmokCode
@SmokCode Рік тому
I'm sorry to say that I think that's not an option with Packt. If you find out otherwise please let us know
@soulextracter
@soulextracter Рік тому
Will your book translate well to use CMake with C instead of C++?
@SmokCode
@SmokCode Рік тому
Some of chapters will. But not all of the book, since I focus on practical use which often means employment of external tools which are often language specific. See the list of chapters and assume that first part works for C, second somewhat works, and third mostly doesn't. If that's enough for you, you'll have a good use of the book. Thanks for your question.
@AindriuMacGiollaEoin
@AindriuMacGiollaEoin Рік тому
Very interesting book
@ilanlee3025
@ilanlee3025 4 місяці тому
I love that no one really know what cmake does and therefore pretend to explain it but actually gloss over it by saying "cmake will create the appropriate build system" instead.
@jacekkowalski3165
@jacekkowalski3165 2 роки тому
Cześć , mam pytanie czy zamierzasz jeszcze nagrywać po polsku ?
@SmokCode
@SmokCode 2 роки тому
Cześć. W tej chwili nie planuję filmów po polsku.
@tosemusername
@tosemusername 2 місяці тому
Amazon link seems to be invalid.
@randomsoul00
@randomsoul00 5 місяців тому
so is it only ffor C++??/
@SmokCode
@SmokCode 5 місяців тому
That's right.
@wislinonchen8755
@wislinonchen8755 Рік тому
I am reading your book
@otziotzi2157
@otziotzi2157 Рік тому
I purchased your book today (Sep 1st) and discount code was still valid :)
@Pyrografpl
@Pyrografpl Рік тому
Kupiłem bo potrzebowałem zacząć z tym tematem. Zdecydowanie lektura nie dla początkujących, po przeczytaniu pierwszych 100 stron nie ma żadnego progresu. Wydaje się że najlepiej najpierw przejrzeć nawet przestarzałe przykłady z sieci, filmik jak hindus stawia VSC z Clang, cmake i ninja, albo inny stack, żeby zobaczyć efekty jak to w ogóle działa i dalej książkę ale najlepiej od środka. No trudno narazie kasa w błoto, może kiedyś temat dojrzeje i będą efekty. Wracam do hinduskich filmów.
@SmokCode
@SmokCode Рік тому
Trochę taki feedback bez konkretu. Nie wiadomo czego dokładnie zabrakło, ani jaki był cel. Książka ma przecież image dockera z pełnym stackiem i można wypróbować wszystko na gotowym.
@caiubyfreitas
@caiubyfreitas Рік тому
Your explanations is pretty good, the book look nice and I considering to buy it. BUT your video background music SUCKS, Please get rid of it.
@tiberiusvetus9113
@tiberiusvetus9113 4 місяці тому
Do a video on Bazel. I prefer it because it's just simpler than CMake.
@mohammedbashir4568
@mohammedbashir4568 8 місяців тому
if you came from react native document make like ...
@x_flies
@x_flies 10 місяців тому
Respect if you’re really only using 1 monitor lol.
@systematicloop3215
@systematicloop3215 Рік тому
Why not compile per platform with the appropriate compiler? Installing these massive build tools feels largely pointless.
@SmokCode
@SmokCode Рік тому
What do you mean? Compilers are the massive build tools.
@systematicloop3215
@systematicloop3215 Рік тому
@@SmokCode I find it far simpler to say something like "gcc hello.c ..." or "cl hello.c ...". It's not much work. It's usually a line or two. It doesn't require me to then install, maintain, and learn an entire suite of commands and syntax. In other words, things like cmake feel redundant. They are solving a problem, rather poorly, when it has already been solved and isn't very complicated to start with.
@SmokCode
@SmokCode Рік тому
Every time you type a command you're redoing the same work you did previously. You may introduce mistakes, and it's not viable to do it on large scale. Even hobby projects often have hundreds of files, and commercial solutions have orders of magnitude more. Keeping track of lengthy commands that change over time is difficult and recompiling everything by default wastes time that quickly adds up.
@SmokCode
@SmokCode Рік тому
I should make a video to explain this in detail..
@diegorocha2186
@diegorocha2186 Рік тому
@@SmokCode Yeah imagine typing "gcc ...." to compile a huge and complex project lol. Maybe he is basing his comments on the project you demonstrated on the video, but this is not even close to real scenarios where you need to manage compilations to different targets and manage dependencies for example! Will be nice if you show some real (open source) projects and how they handle their compilation process. I think serenityos uses cmake to generate the build tree, I don't know if you know this project though.
@banalestorchid5814
@banalestorchid5814 Рік тому
Perhaps I'm suffering from misophonia but the music in the background is REALLY annoying. I'm only 3 minutes in and I don't know if I will be able to get to the end.
@banalestorchid5814
@banalestorchid5814 Рік тому
Nope, gave up before the 5 minute mark. Good luck with the book.
@tiagomelojuca7851
@tiagomelojuca7851 3 місяці тому
maybe, i barely can hear xD
@user-0xDEEDBEEF
@user-0xDEEDBEEF Рік тому
lern Makefile will take less time and effort than read 400 pages book.
@tiagomelojuca7851
@tiagomelojuca7851 3 місяці тому
🤢🤢🤮🤮🤮
@johnrgrillot9901
@johnrgrillot9901 4 місяці тому
Thanks for wasting my time with this a commercial for your book
@SmokCode
@SmokCode 4 місяці тому
No problem!
@johnluffman7954
@johnluffman7954 10 днів тому
I thought it was Zelenski teaching C++🤣
How software libraries work?
10:16
Smok Code
Переглядів 9 тис.
CMake - the essential package
27:54
Code for yourself
Переглядів 7 тис.
ШАХТАР - ДИНАМО. КОМЕНТУВАННЯ. УПЛ. 28 ТУР
4:04:31
you need to stop using print debugging (do THIS instead)
7:07
Low Level Learning
Переглядів 392 тис.
31 nooby C++ habits you need to ditch
16:18
mCoding
Переглядів 705 тис.
how Google writes gorgeous C++
7:40
Low Level Learning
Переглядів 727 тис.
Best OS for programming? Mac vs Windows vs Linux debate settled
8:40
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Переглядів 261 тис.
C++ Weekly - Ep 208 - The Ultimate CMake / C++ Quick Start
32:51
C++ Weekly With Jason Turner
Переглядів 74 тис.
How-To Use C++ Libraries (without relying on a package manager)
30:22
Code, Tech, and Tutorials
Переглядів 49 тис.
Наушники Ой🤣
0:26
Listen_pods
Переглядів 450 тис.
The power button can never be pressed!!
0:57
Maker Y
Переглядів 37 млн
С Какой Высоты Разобьётся NOKIA3310 ?!😳
0:43
Самая важная функция в телефоне?
0:27
Опросный
Переглядів 177 тис.
СЛОМАЛСЯ ПК ЗА 2000$🤬
0:59
Корнеич
Переглядів 2,1 млн