You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
642 B

# This CMakeLists.txt is part of the subproject B (ExternalProject_Add).
cmake_minimum_required(VERSION 3.20)
project(subpro_d_executable LANGUAGES CXX)
find_package(static_lib_project REQUIRED)
find_package(shared_lib_project REQUIRED)
find_package(c2_lib_project REQUIRED)
add_executable(the_executable
"src/main.cpp"
)
target_link_libraries(the_executable PRIVATE
the_static_lib
the_shared_lib
the_c2_lib
)
# This is to fix an issue on AIX/GCC (see commit 4fc47424)
set_property(TARGET the_executable PROPERTY NO_SYSTEM_FROM_IMPORTED 1)
install(
TARGETS
the_executable
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
)