1
0
Fork 0
modern_cpp_tutorial/chapters/chapter_02/CMakeLists.txt

9 lines
308 B
CMake
Raw Normal View History

add_library(chapter_02 src/initlist.cpp src/null.cpp src/constexp.cpp
2023-10-21 15:11:05 +00:00
src/ifswitch.cpp src/structured_binding.cpp)
target_compile_features(chapter_02 PUBLIC cxx_std_20)
target_include_directories(chapter_02 PUBLIC include)
target_link_libraries(chapter_02 PUBLIC chapter_interface)