Тёмный

Modern CMake for C++ 

Smok Code
Подписаться 15 тыс.
Просмотров 39 тыс.
50% 1

How to build a simple C++ project with CMake? What about advanced projects?
#programming #tech #softwaredevelopment #cmake #cpp
Codes are no longer available.
SECOND EDITION IS OUT!
Get it here: packt.link/G56Ny

Наука

Опубликовано:

 

16 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 81   
@goodkidsincity
@goodkidsincity Год назад
I've been reading your book. Thank you for your work!
@StarContract
@StarContract 5 месяцев назад
Do you guys really see no problem that a tool created to simplify the build process has a 400 page manual? 💀
@SmokCode
@SmokCode 5 месяцев назад
What is the problem?
@poopingnuts
@poopingnuts 4 месяца назад
@@SmokCodeit’s just way too complex. Premake is much easier and simple to understand, learn, and write
@DaKeypunchAr
@DaKeypunchAr 2 месяца назад
@@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 2 месяца назад
2nd edition is coming mid year!
@aleksandarglisic9384
@aleksandarglisic9384 2 месяца назад
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 2 года назад
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 4 месяца назад
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 5 месяцев назад
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 5 месяцев назад
that rare thing on youtube - someone who knows what they're talking about 🙂 many thanks
@chethans5908
@chethans5908 6 месяцев назад
this video's 5-6 mins helped me a lot than lot of videos on youtube
@kingofdice66
@kingofdice66 Год назад
Great book, can't recommend it enough!
@feraudyh
@feraudyh 6 месяцев назад
Agreed
@felixfigueroa
@felixfigueroa Год назад
Excellent Focus, it's a great book..!
@sunday-thequant8477
@sunday-thequant8477 10 месяцев назад
next month i will get your book, im massive learning C++
@foxxy4184
@foxxy4184 2 года назад
BEST BOI CONFIRMED
@morales5731
@morales5731 2 года назад
Zaufałem i zamówiłem jeden egzemplarz dla siebie :)
@user-hgkv65454s
@user-hgkv65454s Год назад
good work, thanks
@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.
@joymakerRC
@joymakerRC Год назад
imma buy it now
@RussTeeTrombone
@RussTeeTrombone Год назад
I’m here because I’ve been using your book. QQ - what’s your keyboard?
@feraudyh
@feraudyh 6 месяцев назад
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 6 месяцев назад
I agree. I'll be sure to forward this comment to the publisher. There's a second edition coming up!
@feraudyh
@feraudyh 6 месяцев назад
@@SmokCode just came down from my office where I was back to reading this incredibly helpful book.
@miikavihersaari3104
@miikavihersaari3104 5 месяцев назад
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 5 месяцев назад
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 5 месяцев назад
@@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 :)
@kB-hg2ci
@kB-hg2ci 3 месяца назад
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
@AindriuMacGiollaEoin
@AindriuMacGiollaEoin Год назад
Very interesting book
@elakstein
@elakstein 5 месяцев назад
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 ?
@ilanlee3025
@ilanlee3025 5 месяцев назад
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.
@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
@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.
@user-qw9yf6zs9t
@user-qw9yf6zs9t 5 месяцев назад
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
@robertoze
@robertoze Год назад
It is more than 400 pages, oh my GOD. What about premake?
@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.
@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 ?
@otziotzi2157
@otziotzi2157 Год назад
I purchased your book today (Sep 1st) and discount code was still valid :)
@wislinonchen8755
@wislinonchen8755 Год назад
I am reading your book
@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.
@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
@ashutoshchar940
@ashutoshchar940 18 дней назад
should i buy first edition or second edition?
@SmokCode
@SmokCode 18 дней назад
Second!
@randomsoul00
@randomsoul00 6 месяцев назад
so is it only ffor C++??/
@SmokCode
@SmokCode 6 месяцев назад
That's right.
@x_flies
@x_flies 11 месяцев назад
Respect if you’re really only using 1 monitor lol.
@tiberiusvetus9113
@tiberiusvetus9113 5 месяцев назад
Do a video on Bazel. I prefer it because it's just simpler than CMake.
@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.
@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.
@mohammedbashir4568
@mohammedbashir4568 9 месяцев назад
if you came from react native document make like ...
@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 4 месяца назад
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 4 месяца назад
🤢🤢🤮🤮🤮
@johnrgrillot9901
@johnrgrillot9901 5 месяцев назад
Thanks for wasting my time with this a commercial for your book
@SmokCode
@SmokCode 5 месяцев назад
No problem!
@tosemusername
@tosemusername 3 месяца назад
Amazon link seems to be invalid.
@johnluffman7954
@johnluffman7954 Месяц назад
I thought it was Zelenski teaching C++🤣
Далее
How software libraries work?
10:16
Просмотров 9 тыс.
Why CMake?
13:03
Просмотров 24 тыс.
Rose Burrito #shorts
00:35
Просмотров 6 млн
🤢 To try piggy toothpick beauty gadget
00:30
Просмотров 9 млн
how Google writes gorgeous C++
7:40
Просмотров 786 тыс.
Networking in C++
32:50
Просмотров 228 тыс.
CMake - the essential package
27:54
Просмотров 8 тыс.
I REMADE My First Game 12 YEARS LATER!
37:50
Просмотров 51 тыс.
How to: Modern CMAKE
28:06
Просмотров 598
Bardak ile Projektör Nasıl Yapılır?
0:19
Просмотров 6 млн
Bardak ile Projektör Nasıl Yapılır?
0:19
Просмотров 6 млн
AI от Apple - ОБЪЯСНЯЕМ
24:19
Просмотров 116 тыс.
Main filter..
0:15
Просмотров 5 млн