diff options
author | Domen Vrankar <domen.vrankar@gmail.com> | 2016-11-26 17:57:46 (GMT) |
---|---|---|
committer | Domen Vrankar <domen.vrankar@gmail.com> | 2016-11-27 22:20:34 (GMT) |
commit | 53a69c7dd47f693efec85e031b89251dd7bdef2f (patch) | |
tree | 53acaab2bb7329e5a1cfa5c8dc1f35ba9c8be71f /Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake | |
parent | 70b52a7113664b8b74b231d62ff798952d29ae1f (diff) | |
download | CMake-53a69c7dd47f693efec85e031b89251dd7bdef2f.zip CMake-53a69c7dd47f693efec85e031b89251dd7bdef2f.tar.gz CMake-53a69c7dd47f693efec85e031b89251dd7bdef2f.tar.bz2 |
Tests: CPack move tests to separate dir
For greater transparency tests
are moved to a subfolder with
each test having its own dir.
Diffstat (limited to 'Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake')
-rw-r--r-- | Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake b/Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake new file mode 100644 index 0000000..70b3cb3 --- /dev/null +++ b/Tests/RunCMake/CPack/tests/DEBUGINFO/test.cmake @@ -0,0 +1,32 @@ +set(CMAKE_BUILD_WITH_INSTALL_RPATH 1) + +# PGI compiler doesn't add build id to binaries by default +if(CMAKE_CXX_COMPILER_ID STREQUAL "PGI") + string(APPEND CMAKE_EXE_LINKER_FLAGS "-Wl,--build-id") + string(APPEND CMAKE_SHARED_LINKER_FLAGS "-Wl,--build-id") +endif() + +set(CPACK_RPM_COMPONENT_INSTALL "ON") + +set(CMAKE_BUILD_TYPE Debug) + +file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/test_lib.hpp" + "int test_lib();\n") +file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/test_lib.cpp" + "#include \"test_lib.hpp\"\nint test_lib() {return 0;}\n") +add_library(test_lib SHARED "${CMAKE_CURRENT_BINARY_DIR}/test_lib.cpp") + +file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/main.cpp" + "#include \"test_lib.hpp\"\nint main() {return test_lib();}\n") +add_executable(test_prog "${CMAKE_CURRENT_BINARY_DIR}/main.cpp") +target_link_libraries(test_prog test_lib) + +install(TARGETS test_prog DESTINATION foo COMPONENT applications) +install(FILES CMakeLists.txt DESTINATION bar COMPONENT headers) +install(TARGETS test_lib DESTINATION bas COMPONENT libs) + +set(CPACK_RPM_APPLICATIONS_FILE_NAME "RPM-DEFAULT") +set(CPACK_RPM_APPLICATIONS_DEBUGINFO_PACKAGE ON) +set(CPACK_RPM_LIBS_DEBUGINFO_PACKAGE ON) + +set(CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX "/src") |