mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 21:58:50 -05:00
047d46ebdb
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)
28 lines
642 B
CMake
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}"
|
|
)
|