Files
cmake-examples/02-sub-projects/A-basic/subbinary/CMakeLists.txt
2021-06-30 21:29:34 +08:00

13 lines
383 B
CMake

project(subbinary)
# Create the executable
add_executable(${PROJECT_NAME} main.cpp)
# Link the static library from subproject1 using its alias sub::lib1
# Link the header only library from subproject2 using its alias sub::lib2
# This will cause the include directories for that target to be added to this project
target_link_libraries(${PROJECT_NAME}
sub::lib1
sub::lib2
)