141 lines
4.9 KiB
CMake
Raw Normal View History

2013-03-16 19:13:01 +02:00
remove_definitions(-DCMAKE_IS_REALLY_FUN)
#
# Small utility used to create file
# UTILITY_SOURCE is used for coverage and for getting the exact name
# of the executable.
#
2013-03-16 19:13:01 +02:00
utility_source(CREATE_FILE_EXE create_file "." create_file.cxx)
add_executable(create_file create_file.cxx)
set_target_properties(create_file PROPERTIES RUNTIME_OUTPUT_DIRECTORY ".")
#
# Create static library
# SOURCE_FILES_REMOVE is used for Coverage. empty.h is included for coverage
#
2013-03-16 19:13:01 +02:00
aux_source_directory(ExtraSources LibrarySources)
set(LibrarySources ${LibrarySources}
file2
empty
create_file.cxx
GENERATED
nonexisting_file)
2013-03-16 19:13:01 +02:00
remove(LibrarySources create_file.cxx GENERATED nonexisting_file)
add_library(CMakeTestLibrary ${LibrarySources})
2013-03-16 19:13:01 +02:00
if(WIN32)
if(NOT CYGWIN)
if(NOT BORLAND)
if(NOT MINGW)
target_link_libraries(CMakeTestLibrary
debug
user32.lib)
2013-03-16 19:13:01 +02:00
target_link_libraries(CMakeTestLibrary
optimized
kernel32.lib)
2013-03-16 19:13:01 +02:00
endif()
endif()
endif()
endif()
#
# Create shared library
#
2013-03-16 19:13:01 +02:00
set(SharedLibrarySources sharedFile)
add_library(CMakeTestLibraryShared SHARED ${SharedLibrarySources})
2016-10-30 18:24:19 +01:00
string(APPEND CMAKE_C_FLAGS " -DTEST_C_FLAGS")
2013-03-16 19:13:01 +02:00
add_library(CMakeTestCLibraryShared SHARED testConly.c)
define_property(
TARGET PROPERTY FOO
BRIEF_DOCS "a test property"
2018-08-09 18:06:22 +02:00
FULL_DOCS "A simple test property that means nothing and is used for nothing"
)
2013-03-16 19:13:01 +02:00
set_target_properties(CMakeTestCLibraryShared PROPERTIES FOO BAR)
2014-08-03 19:52:23 +02:00
if(NOT BEOS AND NOT WIN32 AND NOT HAIKU) # No libm on BeOS.
2013-03-16 19:13:01 +02:00
set_target_properties(CMakeTestCLibraryShared PROPERTIES LINK_FLAGS "-lm")
endif()
get_target_property(FOO_BAR_VAR CMakeTestCLibraryShared FOO)
if(${FOO_BAR_VAR} MATCHES "BAR")
else()
message(SEND_ERROR "SET_TARGET_PROPERTIES or GET_TARGET_PROPERTY failed, FOO_BAR_VAR should be BAR, but is ${FOO_BAR_VAR}")
endif()
# Create static and shared lib of same name.
2013-03-16 19:13:01 +02:00
if(CMAKE_EXE_LINK_STATIC_CXX_FLAGS)
add_library(CMakeTestLinkStatic STATIC TestLink.c)
add_library(CMakeTestLinkShared SHARED TestLink.c)
set_target_properties(CMakeTestLinkStatic CMakeTestLinkShared
2009-10-04 10:30:41 +03:00
PROPERTIES OUTPUT_NAME CMakeTestLink)
2013-03-16 19:13:01 +02:00
endif()
#
# Attach pre-build/pre-link/post-build custom-commands to the lib.
# Each runs ${CREATE_FILE_EXE} which will create a file.
# The 'complex' executable will then test if this file exists and remove it.
#
2013-03-16 19:13:01 +02:00
add_dependencies(CMakeTestLibraryShared create_file)
message("complex bin dir is ${Complex_BINARY_DIR}")
add_custom_command(TARGET CMakeTestLibraryShared PRE_BUILD
COMMAND ${CREATE_FILE_EXE}
ARGS "${Complex_BINARY_DIR}/Library/prebuild.txt")
2013-03-16 19:13:01 +02:00
add_custom_command(TARGET CMakeTestLibraryShared PRE_BUILD
COMMAND ${CREATE_FILE_EXE}
ARGS "${Complex_BINARY_DIR}/Library/prelink.txt")
2013-03-16 19:13:01 +02:00
add_custom_command(TARGET CMakeTestLibraryShared POST_BUILD
COMMAND ${CREATE_FILE_EXE}
ARGS "${Complex_BINARY_DIR}/Library/postbuild.txt")
2013-03-16 19:13:01 +02:00
add_custom_command(TARGET CMakeTestLibraryShared POST_BUILD
COMMAND ${CMAKE_COMMAND}
ARGS -E copy
"${Complex_BINARY_DIR}/Library/postbuild.txt"
"${Complex_BINARY_DIR}/Library/postbuild2.txt")
#
# Add a custom target.
# It runs ${CREATE_FILE_EXE} which will create a file.
# The 'complex' executable will then test if this file exists and remove it.
#
2013-03-16 19:13:01 +02:00
add_custom_target(custom_target1
ALL
2013-03-16 19:13:01 +02:00
${CREATE_FILE_EXE}
"${Complex_BINARY_DIR}/Library/custom_target1.txt")
2013-03-16 19:13:01 +02:00
add_dependencies(custom_target1 create_file)
#
# Extra coverage
#
2013-03-16 19:13:01 +02:00
set_source_files_properties(file2 PROPERTIES ABSTRACT 1)
2013-03-16 19:13:01 +02:00
install_files(/tmp .h ${Complex_BINARY_DIR}/cmTestConfigure.h)
install_files(/tmp .cxx ${Complex_BINARY_DIR}/cmTestConfigure.h)
# Test creating a library that is not built by default.
2013-03-16 19:13:01 +02:00
add_library(notInAllLib EXCLUDE_FROM_ALL notInAllLib.cxx)
# Create an imported target for if(TARGET) test in Executable dir.
# That test should not see this target.
2013-03-16 19:13:01 +02:00
add_library(LibImportedTarget UNKNOWN IMPORTED)
# Test generation of preprocessed sources.
2013-03-16 19:13:01 +02:00
if("${CMAKE_GENERATOR}" MATCHES "Makefile" AND CMAKE_MAKE_PROGRAM)
if(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE)
# Skip running this part of the test on certain platforms
# until they are fixed.
2013-03-16 19:13:01 +02:00
set(MAYBE_ALL ALL)
list(LENGTH CMAKE_OSX_ARCHITECTURES ARCH_COUNT)
if(ARCH_COUNT GREATER 1)
# OSX does not support preprocessing more than one architecture.
2013-03-16 19:13:01 +02:00
set(MAYBE_ALL)
endif()
# Custom target to try preprocessing invocation.
2013-03-16 19:13:01 +02:00
add_custom_target(test_preprocess ${MAYBE_ALL}
2020-08-30 11:54:41 +02:00
COMMAND ${CMAKE_COMMAND} -E rm -f CMakeFiles/create_file.dir/create_file.i
COMMAND ${CMAKE_MAKE_PROGRAM} create_file.i
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_SOURCE_DIR}/test_preprocess.cmake
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
2013-03-16 19:13:01 +02:00
endif()
endif()