Files
CMake/Tests/InstallMode/subpro_d_executable/CMakeLists.txt
T
Felix Lelchuk 047d46ebdb Fix: InstallMode tests fail on some platforms
1) The ExternalProject_Add() command was called with
   UPDATE_COMMAND ";" which was not noticable on most platforms

2) On AIX/GCC, the executable did not link because symbols from
   imported libraries were assumed extern "C" (see commit 4fc47424)
2021-08-24 19:21:40 +02:00

28 lines
642 B
CMake

# 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}"
)