init
This commit is contained in:
commit
444f800536
122 changed files with 17137 additions and 0 deletions
4
Chapter01/01_CMake/CMakeLists.txt
Normal file
4
Chapter01/01_CMake/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
cmake_minimum_required(VERSION 3.19)
|
||||
project(Chapter01)
|
||||
include(../../CMake/CommonMacros.txt)
|
||||
SETUP_APP(Ch01_Sample01_Cmake "Chapter 01")
|
||||
6
Chapter01/01_CMake/src/main.cpp
Normal file
6
Chapter01/01_CMake/src/main.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include "stdio.h"
|
||||
|
||||
int main() {
|
||||
printf("Hello World!\n");
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue