2008-03-25 18:27:18 +03:00
|
|
|
cmake_minimum_required (VERSION 2.6)
|
2012-08-13 21:47:32 +04:00
|
|
|
project (TestSimpleInstall)
|
|
|
|
set(CMAKE_VERBOSE_MAKEFILE 1)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
|
2007-03-13 06:36:56 +03:00
|
|
|
"${TestSimpleInstall_BINARY_DIR}/bin")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY
|
2007-03-13 06:36:56 +03:00
|
|
|
"${TestSimpleInstall_BINARY_DIR}/lib/static")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY
|
2007-03-13 06:36:56 +03:00
|
|
|
"${TestSimpleInstall_BINARY_DIR}/lib")
|
2004-02-01 20:53:28 +03:00
|
|
|
|
2006-02-20 01:44:45 +03:00
|
|
|
# Skip generating the rpath pointing at the build tree to make sure
|
|
|
|
# the executable is installed with the proper rpath in the install
|
|
|
|
# tree.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_SKIP_BUILD_RPATH 1)
|
2006-02-20 01:44:45 +03:00
|
|
|
|
2006-02-24 21:13:14 +03:00
|
|
|
# Make sure the executable can run from the install tree.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/MyTest/lib)
|
2006-02-24 21:13:14 +03:00
|
|
|
|
2005-04-28 19:47:48 +04:00
|
|
|
# Skip the dependency that causes a build when installing. This
|
|
|
|
# avoids infinite loops when the post-build rule below installs.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_SKIP_INSTALL_ALL_DEPENDENCY 1)
|
|
|
|
set(CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY 1)
|
2005-04-28 19:47:48 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_DEBUG_POSTFIX "_test_debug_postfix")
|
2004-02-08 20:04:10 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(EXTRA_INSTALL_FLAGS)
|
|
|
|
message("Extra install: ${EXTRA_INSTALL_FLAGS}")
|
2004-02-10 00:40:39 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(STAGE2)
|
|
|
|
set(LIBPATHS
|
2006-03-25 00:11:24 +03:00
|
|
|
${CMAKE_INSTALL_PREFIX}/MyTest/lib/static
|
|
|
|
${CMAKE_INSTALL_PREFIX}/MyTest/lib
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
set(t1NAMES test1 test1${CMAKE_DEBUG_POSTFIX} test1rel)
|
|
|
|
set(t2NAMES test2 test2${CMAKE_DEBUG_POSTFIX})
|
|
|
|
set(t4NAMES test4out test4out${CMAKE_DEBUG_POSTFIX})
|
2004-02-11 16:28:59 +03:00
|
|
|
|
2006-02-10 21:54:36 +03:00
|
|
|
# Make sure the install script ran.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CMAKE_INSTALL_SCRIPT_DID_RUN 0)
|
|
|
|
include(${CMAKE_INSTALL_PREFIX}/MyTest/InstallScriptOut.cmake OPTIONAL)
|
|
|
|
if(CMAKE_INSTALL_SCRIPT_DID_RUN)
|
|
|
|
message(STATUS "Stage 1 did run install script 2.")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(SEND_ERROR "Stage 1 did not run install script 2.")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
|
|
|
|
if(CYGWIN OR MINGW)
|
|
|
|
set(LIBPATHS ${LIBPATHS} "${CMAKE_INSTALL_PREFIX}/MyTest/bin")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
message("Search for library in: ${LIBPATHS}")
|
|
|
|
|
|
|
|
set(TEST1_LIBRARY "TEST1_LIBRARY-NOTFOUND" CACHE FILEPATH "Force find." FORCE)
|
|
|
|
set(TEST2_LIBRARY "TEST2_LIBRARY-NOTFOUND" CACHE FILEPATH "Force find." FORCE)
|
|
|
|
set(TEST4_LIBRARY "TEST4_LIBRARY-NOTFOUND" CACHE FILEPATH "Force find." FORCE)
|
|
|
|
|
|
|
|
find_library(TEST1_LIBRARY
|
2004-02-11 16:28:59 +03:00
|
|
|
NAMES ${t1NAMES}
|
|
|
|
PATHS ${LIBPATHS}
|
2004-02-08 20:04:10 +03:00
|
|
|
DOC "First library")
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(TEST2_LIBRARY
|
2004-02-11 16:28:59 +03:00
|
|
|
NAMES ${t2NAMES}
|
|
|
|
PATHS ${LIBPATHS}
|
2004-06-28 22:40:17 +04:00
|
|
|
DOC "Second library")
|
2012-08-13 21:47:32 +04:00
|
|
|
find_library(TEST4_LIBRARY
|
2004-06-28 22:40:17 +04:00
|
|
|
NAMES ${t4NAMES}
|
|
|
|
PATHS ${LIBPATHS}
|
|
|
|
DOC "Fourth library")
|
2004-02-10 00:40:39 +03:00
|
|
|
|
2008-08-18 19:39:22 +04:00
|
|
|
# Test importing a library found on disk.
|
2012-08-13 21:47:32 +04:00
|
|
|
add_library(lib_test4 UNKNOWN IMPORTED)
|
|
|
|
set_property(TARGET lib_test4 PROPERTY IMPORTED_LOCATION ${TEST4_LIBRARY})
|
2008-08-18 19:39:22 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include_directories(${CMAKE_INSTALL_PREFIX}/MyTest/include)
|
|
|
|
add_executable (SimpleInstExeS2 inst2.cxx foo.c foo.h)
|
|
|
|
target_link_libraries(SimpleInstExeS2 ${TEST1_LIBRARY} ${TEST2_LIBRARY} lib_test4)
|
|
|
|
set(install_target SimpleInstExeS2)
|
2004-02-09 04:08:58 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${TEST1_LIBRARY}" MATCHES "static")
|
|
|
|
message(STATUS "test1 correctly found in lib/static")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(SEND_ERROR "test1 not found in lib/static!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2006-03-25 00:11:24 +03:00
|
|
|
|
2006-05-05 22:57:19 +04:00
|
|
|
# Check for failure of configuration-specific installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/include/Release/lib1debug.h")
|
|
|
|
message(FATAL_ERROR "Debug-configuration file installed for Release!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/include/Debug/lib1release.h")
|
|
|
|
message(FATAL_ERROR "Release-configuration file installed for Debug!")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2006-05-05 22:57:19 +04:00
|
|
|
|
2006-08-22 00:55:03 +04:00
|
|
|
# Check for failure of directory installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/TSD.h")
|
|
|
|
message(FATAL_ERROR "Directory installation did not install TSD.h")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
|
|
|
|
message(FATAL_ERROR "Directory installation installed CVS directory.")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
|
|
|
|
message(FATAL_ERROR "Directory installation installed CVS directory.")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/CMakeLists.txt")
|
|
|
|
message(FATAL_ERROR "Directory installation installed CMakeLists.txt.")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/alt/TestSubDir/TSD.h")
|
|
|
|
message(FATAL_ERROR "Directory installation did not install alternate TSD.h")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/alt/TestSubDir/TSD.cxx")
|
|
|
|
message(FATAL_ERROR "Directory installation installed alternate TSD.cxx")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-05-25 19:41:37 +04:00
|
|
|
|
|
|
|
# Check that scripts properly installed.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(WIN32 AND NOT CYGWIN)
|
|
|
|
set(BAT .bat)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(BAT)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
foreach(loc share share/old1 share/old2 share/old3 share/alt)
|
|
|
|
set(CUR_SCRIPT "${CMAKE_INSTALL_PREFIX}/MyTest/${loc}/sample_script${BAT}")
|
|
|
|
execute_process(
|
2007-05-25 19:41:37 +04:00
|
|
|
COMMAND ${CUR_SCRIPT}
|
|
|
|
RESULT_VARIABLE SAMPLE_SCRIPT_RESULT
|
|
|
|
OUTPUT_VARIABLE SAMPLE_SCRIPT_OUTPUT
|
|
|
|
)
|
2013-06-02 23:42:10 +04:00
|
|
|
if(NOT "${SAMPLE_SCRIPT_RESULT}" STREQUAL "0")
|
2012-08-13 21:47:32 +04:00
|
|
|
message(FATAL_ERROR
|
2007-05-25 19:41:37 +04:00
|
|
|
"Sample script [${CUR_SCRIPT}] failed: [${SAMPLE_SCRIPT_RESULT}]")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT "${SAMPLE_SCRIPT_OUTPUT}" MATCHES "Sample Script Output")
|
|
|
|
message(FATAL_ERROR
|
2007-05-25 19:41:37 +04:00
|
|
|
"Bad sample script [${CUR_SCRIPT}] output: [${SAMPLE_SCRIPT_OUTPUT}]")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2006-08-22 00:55:03 +04:00
|
|
|
|
2006-08-29 23:04:29 +04:00
|
|
|
# Check for failure of empty directory installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT EXISTS "${CMAKE_INSTALL_PREFIX}/MyTest/share/empty")
|
|
|
|
message(FATAL_ERROR "Empty directory installation did not install.")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
file(GLOB EMPTY_FILES "${CMAKE_INSTALL_PREFIX}/MyTest/share/empty/*")
|
|
|
|
if(EMPTY_FILES)
|
|
|
|
message(FATAL_ERROR "Empty directory installed [${EMPTY_FILES}].")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2006-08-29 23:04:29 +04:00
|
|
|
|
2006-02-16 23:38:59 +03:00
|
|
|
# Make sure the test executable can run from the install tree.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(SimpleInstExeS2 PROPERTIES
|
2006-03-08 22:02:30 +03:00
|
|
|
INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/MyTest/lib)
|
2006-02-16 23:38:59 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
install_targets(/MyTest/bin SimpleInstExeS2)
|
2007-08-27 23:15:26 +04:00
|
|
|
|
|
|
|
# try to import the exported targets again
|
2012-08-13 21:47:32 +04:00
|
|
|
set(SimpleInstallS1_DIR ${CMAKE_INSTALL_PREFIX}/MyTest/lib)
|
|
|
|
find_package(SimpleInstallS1 REQUIRED)
|
|
|
|
get_target_property(simpleInstallImported S1_SimpleInstall IMPORTED)
|
|
|
|
if(NOT simpleInstallImported)
|
|
|
|
message(FATAL_ERROR "Target S1_SimpleInstall could not be imported")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2007-05-25 19:41:37 +04:00
|
|
|
# Wipe out the install directory to do a fresh test.
|
2012-08-13 21:47:32 +04:00
|
|
|
file(REMOVE_RECURSE ${CMAKE_INSTALL_PREFIX}/MyTest)
|
2007-05-25 19:41:37 +04:00
|
|
|
|
2004-02-08 20:04:10 +03:00
|
|
|
# this is stage 1, so create libraries and modules and install everything
|
2012-08-13 21:47:32 +04:00
|
|
|
add_library(test1 STATIC lib1.cxx)
|
|
|
|
add_library(test2 SHARED lib2.cxx)
|
|
|
|
add_library(test3 MODULE lib3.cxx)
|
|
|
|
add_library(test4 SHARED lib4.cxx)
|
2004-02-08 20:04:10 +03:00
|
|
|
|
2009-05-01 17:45:43 +04:00
|
|
|
# Test <ARCHIVE|LIBRARY|RUNTIME>_OUTPUT_NAME properties.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_property(TARGET test4 PROPERTY ARCHIVE_OUTPUT_NAME test4out)
|
|
|
|
set_property(TARGET test4 PROPERTY LIBRARY_OUTPUT_NAME test4out)
|
2009-05-01 17:45:43 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_executable (SimpleInstall inst.cxx foo.c foo.h)
|
|
|
|
target_link_libraries(SimpleInstall test1 test2 test4)
|
|
|
|
set(install_target SimpleInstall)
|
2004-02-08 20:04:10 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(SimpleInstall PROPERTIES OUTPUT_NAME SimpleInstExe)
|
2011-12-02 00:41:19 +04:00
|
|
|
# Disable VERSION test until it is implemented in the Xcode generator.
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT XCODE)
|
|
|
|
set_target_properties(SimpleInstall PROPERTIES VERSION 1.2)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2011-12-02 00:41:19 +04:00
|
|
|
|
2006-02-16 23:28:09 +03:00
|
|
|
# Make sure the test executable can run from the install tree.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(SimpleInstall PROPERTIES
|
2006-03-08 22:02:30 +03:00
|
|
|
INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/MyTest/lib)
|
2006-02-16 23:28:09 +03:00
|
|
|
|
2006-04-18 19:45:31 +04:00
|
|
|
# Test per-configuration output name.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(test1 PROPERTIES RELEASE_OUTPUT_NAME test1rel)
|
|
|
|
set_target_properties(test2 PROPERTIES PUBLIC_HEADER foo.h)
|
2006-04-18 19:45:31 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_GENERATOR MATCHES "Makefiles")
|
|
|
|
add_subdirectory(TestSubDir)
|
|
|
|
add_dependencies(SimpleInstall TSD)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2005-08-08 19:33:47 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_dependencies(SimpleInstall test3)
|
|
|
|
add_dependencies(test2 test3)
|
|
|
|
add_dependencies(test4 test2)
|
2004-02-08 20:04:10 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
install(TARGETS SimpleInstall test1 test2 test3 EXPORT SimpleInstallS1
|
2006-05-05 19:51:07 +04:00
|
|
|
RUNTIME DESTINATION MyTest/bin COMPONENT Runtime # .exe, .dll
|
|
|
|
LIBRARY DESTINATION MyTest/lib COMPONENT Runtime # .so, mod.dll
|
|
|
|
ARCHIVE DESTINATION MyTest/lib/static COMPONENT Development # .a, .lib
|
2012-08-13 21:42:58 +04:00
|
|
|
PUBLIC_HEADER DESTINATION MyTest/include COMPONENT Development
|
2006-03-25 00:11:24 +03:00
|
|
|
)
|
2007-08-27 23:15:26 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
install(TARGETS test4 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
|
2006-03-25 00:11:24 +03:00
|
|
|
RUNTIME DESTINATION MyTest/bin
|
|
|
|
LIBRARY DESTINATION MyTest/lib
|
|
|
|
ARCHIVE DESTINATION MyTest/lib/static
|
2007-05-28 19:41:29 +04:00
|
|
|
OPTIONAL # for coverage...target should always exist
|
2006-03-25 00:11:24 +03:00
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
install(FILES lib1.h DESTINATION MyTest/include/foo)
|
|
|
|
install(FILES lib2.h
|
2006-03-08 22:02:30 +03:00
|
|
|
DESTINATION MyTest/include/foo
|
2007-05-28 19:41:29 +04:00
|
|
|
COMPONENT Development
|
2006-03-04 02:44:32 +03:00
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE
|
|
|
|
RENAME lib2renamed.h
|
|
|
|
)
|
2007-05-25 19:41:37 +04:00
|
|
|
|
|
|
|
# Test old-style install commands.
|
2012-08-13 21:47:32 +04:00
|
|
|
install_files(/MyTest/include FILES lib3.h)
|
|
|
|
install_files(/MyTest/include/old .h lib3)
|
|
|
|
install_files(/MyTest/include/old "^lib2.h$")
|
|
|
|
install_programs(/MyTest/share/old1 FILES
|
2007-05-25 19:41:37 +04:00
|
|
|
scripts/sample_script scripts/sample_script.bat)
|
2012-08-13 21:47:32 +04:00
|
|
|
install_programs(/MyTest/share/old2
|
2007-05-25 19:41:37 +04:00
|
|
|
scripts/sample_script scripts/sample_script.bat)
|
2007-08-27 23:15:26 +04:00
|
|
|
|
|
|
|
# "export" the targets collected in "SimpleInstallS1"
|
2012-08-13 21:47:32 +04:00
|
|
|
install(EXPORT SimpleInstallS1 FILE SimpleInstallS1Config.cmake
|
2012-08-13 21:42:58 +04:00
|
|
|
DESTINATION MyTest/lib
|
2008-01-28 16:39:25 +03:00
|
|
|
NAMESPACE S1_ )
|
2007-08-27 23:15:26 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
export(TARGETS SimpleInstall test1 test2 test3
|
2007-08-31 00:23:12 +04:00
|
|
|
FILE "${CMAKE_CURRENT_BINARY_DIR}/SimpleInstallS1Config.cmake"
|
2008-01-28 16:39:25 +03:00
|
|
|
NAMESPACE S2_ )
|
2007-08-31 00:23:12 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_subdirectory(scripts)
|
2004-06-01 20:55:23 +04:00
|
|
|
|
2006-10-05 19:31:57 +04:00
|
|
|
# Test optional installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(FILES does_not_exist.h DESTINATION MyTest/include/foo OPTIONAL)
|
2006-10-05 19:31:57 +04:00
|
|
|
|
2006-05-05 22:57:19 +04:00
|
|
|
# Test configuration-specific installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(FILES lib1.h RENAME lib1release.h CONFIGURATIONS Release
|
2006-05-05 22:57:19 +04:00
|
|
|
DESTINATION MyTest/include/Release
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
install(FILES lib1.h RENAME lib1debug.h CONFIGURATIONS Debug
|
2006-05-05 22:57:19 +04:00
|
|
|
DESTINATION MyTest/include/Debug
|
|
|
|
)
|
|
|
|
|
2006-08-22 00:55:03 +04:00
|
|
|
# Test directory installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
file(REMOVE_RECURSE "${CMAKE_INSTALL_PREFIX}/MyTest/share/CVS")
|
|
|
|
file(REMOVE_RECURSE "${CMAKE_INSTALL_PREFIX}/MyTest/share/TestSubDir/CVS")
|
|
|
|
install(
|
2006-08-22 00:55:03 +04:00
|
|
|
DIRECTORY TestSubDir scripts/ DESTINATION MyTest/share
|
2007-05-28 19:41:29 +04:00
|
|
|
FILE_PERMISSIONS OWNER_READ OWNER_WRITE
|
|
|
|
DIRECTORY_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
|
|
|
|
GROUP_READ GROUP_EXECUTE
|
2006-08-22 00:55:03 +04:00
|
|
|
PATTERN "CVS" EXCLUDE
|
2007-05-25 19:41:37 +04:00
|
|
|
REGEX "\\.txt$" EXCLUDE
|
2006-08-22 00:55:03 +04:00
|
|
|
PATTERN "scripts/*" PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
|
|
|
|
)
|
|
|
|
|
2007-05-28 19:41:29 +04:00
|
|
|
# Alternate directory installation for coverage.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(
|
2007-05-28 19:41:29 +04:00
|
|
|
DIRECTORY scripts/ DESTINATION MyTest/share/alt
|
|
|
|
COMPONENT Development
|
|
|
|
USE_SOURCE_PERMISSIONS
|
|
|
|
PATTERN "CVS" EXCLUDE
|
|
|
|
REGEX "\\.txt$" EXCLUDE
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
install(
|
2008-01-02 23:17:56 +03:00
|
|
|
DIRECTORY TestSubDir DESTINATION MyTest/share/alt
|
|
|
|
FILE_PERMISSIONS OWNER_READ OWNER_WRITE
|
|
|
|
DIRECTORY_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
|
|
|
|
GROUP_READ GROUP_EXECUTE
|
|
|
|
FILES_MATCHING PATTERN "*.h"
|
|
|
|
)
|
2007-05-28 19:41:29 +04:00
|
|
|
|
2006-08-29 23:04:29 +04:00
|
|
|
# Test empty directory installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(DIRECTORY DESTINATION MyTest/share/empty)
|
2006-08-29 23:04:29 +04:00
|
|
|
|
2009-02-24 19:41:40 +03:00
|
|
|
# Test optional directory installation.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(DIRECTORY does-not-exist DESTINATION MyTest/share OPTIONAL)
|
2009-02-24 19:41:40 +03:00
|
|
|
|
2007-10-15 15:08:15 +04:00
|
|
|
# Test user-specified install scripts, with and without COMPONENT.
|
2012-08-13 21:47:32 +04:00
|
|
|
install(
|
2006-02-10 21:54:36 +03:00
|
|
|
SCRIPT InstallScript1.cmake
|
2012-08-13 21:47:32 +04:00
|
|
|
CODE "set(INSTALL_CODE_DID_RUN 1)"
|
2006-02-10 21:54:36 +03:00
|
|
|
SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/InstallScript2.cmake
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
install(
|
2007-10-15 15:08:15 +04:00
|
|
|
SCRIPT InstallScript3.cmake
|
2012-08-13 21:47:32 +04:00
|
|
|
CODE "set(INSTALL_CODE_WITH_COMPONENT_DID_RUN 1)"
|
2007-10-15 15:08:15 +04:00
|
|
|
SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/InstallScript4.cmake
|
|
|
|
COMPONENT Development
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
set_directory_properties(PROPERTIES
|
2007-10-15 15:08:15 +04:00
|
|
|
ADDITIONAL_MAKE_CLEAN_FILES
|
|
|
|
"${CMAKE_INSTALL_PREFIX}/InstallScriptOut.cmake;${CMAKE_INSTALL_PREFIX}/InstallScript4Out.cmake")
|
2006-02-10 21:54:36 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(SimpleInstall PROPERTIES PRE_INSTALL_SCRIPT
|
2004-03-28 05:59:44 +04:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/PreInstall.cmake)
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(SimpleInstall PROPERTIES POST_INSTALL_SCRIPT
|
2004-03-28 05:59:44 +04:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/PostInstall.cmake)
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(test4 PROPERTIES VERSION 1.2 SOVERSION 3
|
2006-10-11 20:41:20 +04:00
|
|
|
INSTALL_NAME_DIR @executable_path/../lib)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2004-02-10 00:40:39 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CMAKE_CONFIGURATION_TYPES)
|
2013-11-15 00:11:04 +04:00
|
|
|
set(SI_CONFIG --config $<CONFIGURATION>)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
set(SI_CONFIG)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2005-08-20 01:56:26 +04:00
|
|
|
|
2006-02-28 16:23:40 +03:00
|
|
|
# Dummy test of CPack
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Test of packaging with cpack")
|
|
|
|
set(CPACK_PACKAGE_VENDOR "Kitware")
|
|
|
|
set(CPACK_INSTALL_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/PackageScript.cmake")
|
2006-02-28 16:23:40 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(WIN32 AND NOT UNIX)
|
|
|
|
find_program(NSIS_MAKENSIS NAMES makensis
|
2006-02-28 21:30:11 +03:00
|
|
|
PATHS [HKEY_LOCAL_MACHINE\\SOFTWARE\\NSIS]
|
|
|
|
DOC "Where is makensis.exe located"
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
if(NOT NSIS_MAKENSIS)
|
|
|
|
set(CPACK_GENERATOR TGZ)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
set(CPACK_GENERATOR "TGZ;STGZ;TZ")
|
|
|
|
# find_program(found_compress
|
2006-08-24 18:57:27 +04:00
|
|
|
# NAMES compress)
|
2012-08-13 21:47:32 +04:00
|
|
|
# if(found_compress)
|
|
|
|
# find_program(file_command NAMES file)
|
|
|
|
# if(NOT file_command)
|
2006-08-24 18:57:27 +04:00
|
|
|
# set(file_command file)
|
2012-08-13 21:50:14 +04:00
|
|
|
# endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
# execute_process(COMMAND ${file_command} ${found_compress}
|
2006-08-24 18:57:27 +04:00
|
|
|
# OUTPUT_VARIABLE output)
|
|
|
|
# set(SKIP_TZ FALSE)
|
|
|
|
# if("${output}" MATCHES "script")
|
|
|
|
# set(SKIP_TZ TRUE)
|
2012-08-13 21:50:14 +04:00
|
|
|
# endif()
|
2006-08-24 18:57:27 +04:00
|
|
|
# if("${output}" MATCHES "dummy.sh")
|
|
|
|
# set(SKIP_TZ TRUE)
|
2012-08-13 21:50:14 +04:00
|
|
|
# endif()
|
2006-08-24 18:57:27 +04:00
|
|
|
# if(NOT SKIP_TZ)
|
|
|
|
# message("compress found and it was not a script")
|
|
|
|
# message("output from file command: [${output}]")
|
2012-08-13 21:47:32 +04:00
|
|
|
# set(CPACK_GENERATOR "${CPACK_GENERATOR};TZ")
|
2012-08-13 21:50:14 +04:00
|
|
|
# else()
|
2006-08-24 18:57:27 +04:00
|
|
|
# message("compress found, but it was a script so dont use it")
|
|
|
|
# message("output from file command: [${output}]")
|
2012-08-13 21:50:14 +04:00
|
|
|
# endif()
|
|
|
|
# endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
find_program(found_bz2
|
2006-07-28 17:22:34 +04:00
|
|
|
NAMES bzip2)
|
2012-08-13 21:47:32 +04:00
|
|
|
if(found_bz2)
|
|
|
|
set(CPACK_GENERATOR "${CPACK_GENERATOR};TBZ2")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2006-07-28 17:22:34 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_PACKAGE_EXECUTABLES "SimpleInstall" "Simple Install")
|
|
|
|
set(CMAKE_INSTALL_MFC_LIBRARIES 1)
|
|
|
|
set(CMAKE_INSTALL_DEBUG_LIBRARIES 1)
|
|
|
|
include(InstallRequiredSystemLibraries)
|
2006-02-28 16:23:40 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(CTEST_TEST_CPACK)
|
2013-11-15 00:11:04 +04:00
|
|
|
set(package_command COMMAND
|
|
|
|
${CMAKE_COMMAND} --build . --target package ${SI_CONFIG}
|
|
|
|
)
|
2009-11-16 23:35:04 +03:00
|
|
|
|
|
|
|
# Avoid settings that require the .zip file command line tools...
|
|
|
|
# (just build an NSIS installer without component support)
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_BINARY_ZIP OFF)
|
|
|
|
set(CPACK_MONOLITHIC_INSTALL ON)
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2013-11-15 00:11:04 +04:00
|
|
|
set(package_command)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-09-18 00:21:24 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include(CPack)
|
2009-11-16 23:35:04 +03:00
|
|
|
|
2013-11-15 00:11:04 +04:00
|
|
|
set(install_command COMMAND
|
|
|
|
${CMAKE_COMMAND} --build . --target install ${SI_CONFIG}
|
|
|
|
)
|
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_command(
|
2007-08-27 22:44:32 +04:00
|
|
|
TARGET ${install_target}
|
|
|
|
POST_BUILD
|
2013-11-15 00:11:04 +04:00
|
|
|
${install_command}
|
|
|
|
${package_command}
|
2007-08-27 22:44:32 +04:00
|
|
|
COMMENT "Install Project"
|
|
|
|
)
|