2004-04-15 13:59:29 -04:00
|
|
|
REMOVE_DEFINITIONS(-DCMAKE_IS_REALLY_FUN)
|
|
|
|
|
2002-01-19 21:24:55 -05:00
|
|
|
#
|
|
|
|
# Small utility used to create file
|
|
|
|
# UTILITY_SOURCE is used for coverage and for getting the exact name
|
|
|
|
# of the executable.
|
|
|
|
#
|
|
|
|
UTILITY_SOURCE(CREATE_FILE_EXE create_file "." create_file.cxx)
|
|
|
|
ADD_EXECUTABLE(create_file create_file.cxx)
|
2007-03-12 10:23:06 -04:00
|
|
|
SET_TARGET_PROPERTIES(create_file PROPERTIES RUNTIME_OUTPUT_DIRECTORY ".")
|
2001-08-23 13:57:45 -04:00
|
|
|
|
2002-01-19 21:24:55 -05:00
|
|
|
#
|
|
|
|
# Create static library
|
2002-01-20 01:58:57 -05:00
|
|
|
# SOURCE_FILES_REMOVE is used for Coverage. empty.h is included for coverage
|
2002-01-19 21:24:55 -05:00
|
|
|
#
|
|
|
|
AUX_SOURCE_DIRECTORY(ExtraSources LibrarySources)
|
2005-06-02 14:56:50 -04:00
|
|
|
SET(LibrarySources ${LibrarySources}
|
2002-01-20 01:58:57 -05:00
|
|
|
file2
|
|
|
|
empty
|
|
|
|
create_file.cxx
|
|
|
|
GENERATED
|
|
|
|
nonexisting_file)
|
2005-06-02 14:56:50 -04:00
|
|
|
REMOVE(LibrarySources create_file.cxx GENERATED nonexisting_file)
|
2002-06-27 15:57:09 -04:00
|
|
|
ADD_LIBRARY(CMakeTestLibrary ${LibrarySources})
|
2002-01-17 15:49:08 -05:00
|
|
|
|
2002-05-02 15:10:19 -04:00
|
|
|
IF(WIN32)
|
|
|
|
IF(NOT CYGWIN)
|
2002-05-03 18:10:49 -04:00
|
|
|
IF(NOT BORLAND)
|
2003-08-27 16:42:01 -04:00
|
|
|
IF(NOT MINGW)
|
|
|
|
TARGET_LINK_LIBRARIES(CMakeTestLibrary
|
|
|
|
debug
|
|
|
|
user32.lib)
|
|
|
|
TARGET_LINK_LIBRARIES(CMakeTestLibrary
|
|
|
|
optimized
|
|
|
|
kernel32.lib)
|
|
|
|
ENDIF(NOT MINGW)
|
2002-05-03 18:10:49 -04:00
|
|
|
ENDIF(NOT BORLAND)
|
2002-05-02 15:10:19 -04:00
|
|
|
ENDIF(NOT CYGWIN)
|
|
|
|
ENDIF(WIN32)
|
|
|
|
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
2002-01-19 21:24:55 -05:00
|
|
|
# Create shared library
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
2005-06-02 14:56:50 -04:00
|
|
|
SET(SharedLibrarySources sharedFile)
|
2002-06-27 15:57:09 -04:00
|
|
|
ADD_LIBRARY(CMakeTestLibraryShared SHARED ${SharedLibrarySources})
|
2002-04-09 12:02:48 -04:00
|
|
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DTEST_C_FLAGS")
|
2002-04-08 13:36:18 -04:00
|
|
|
ADD_LIBRARY(CMakeTestCLibraryShared SHARED testConly.c)
|
2008-02-14 13:36:23 -05:00
|
|
|
DEFINE_PROPERTY(
|
|
|
|
TARGET PROPERTY FOO
|
|
|
|
BRIEF_DOCS "a test property"
|
|
|
|
FULL_DOCS "A simple etst proerty that means nothign and is used for nothing"
|
|
|
|
)
|
2002-12-20 17:15:45 -05:00
|
|
|
SET_TARGET_PROPERTIES(CMakeTestCLibraryShared PROPERTIES FOO BAR)
|
2009-07-10 09:12:39 -04:00
|
|
|
IF(NOT BEOS AND NOT WIN32) # No libm on BeOS.
|
2006-12-04 17:26:41 -05:00
|
|
|
SET_TARGET_PROPERTIES(CMakeTestCLibraryShared PROPERTIES LINK_FLAGS "-lm")
|
2009-07-10 09:12:39 -04:00
|
|
|
ENDIF(NOT BEOS AND NOT WIN32)
|
2002-12-20 17:15:45 -05:00
|
|
|
GET_TARGET_PROPERTY(FOO_BAR_VAR CMakeTestCLibraryShared FOO)
|
|
|
|
IF(${FOO_BAR_VAR} MATCHES "BAR")
|
|
|
|
ELSE(${FOO_BAR_VAR} MATCHES "BAR")
|
|
|
|
MESSAGE(SEND_ERROR "SET_TARGET_PROPERTIES or GET_TARGET_PROPERTY failed, FOO_BAR_VAR should be BAR, but is ${FOO_BAR_VAR}")
|
|
|
|
ENDIF(${FOO_BAR_VAR} MATCHES "BAR")
|
|
|
|
|
2006-09-15 14:31:24 -04:00
|
|
|
# Create static and shared lib of same name.
|
|
|
|
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-05-01 10:38:35 -04:00
|
|
|
PROPERTIES OUTPUT_NAME CMakeTestLink)
|
2006-09-15 14:31:24 -04:00
|
|
|
ENDIF(CMAKE_EXE_LINK_STATIC_CXX_FLAGS)
|
2002-04-08 13:36:18 -04:00
|
|
|
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
2005-02-25 09:31:55 -05:00
|
|
|
# Attach pre-build/pre-link/post-build custom-commands to the lib.
|
|
|
|
# Each runs ${CREATE_FILE_EXE} which will create a file.
|
2002-01-19 21:24:55 -05:00
|
|
|
# The 'complex' executable will then test if this file exists and remove it.
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
|
|
|
ADD_DEPENDENCIES(CMakeTestLibraryShared create_file)
|
2003-01-15 17:31:22 -05:00
|
|
|
MESSAGE("complex bin dir is ${Complex_BINARY_DIR}")
|
2005-02-25 09:31:55 -05:00
|
|
|
ADD_CUSTOM_COMMAND(TARGET CMakeTestLibraryShared PRE_BUILD
|
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/prebuild.txt")
|
|
|
|
ADD_CUSTOM_COMMAND(TARGET CMakeTestLibraryShared PRE_BUILD
|
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/prelink.txt")
|
|
|
|
ADD_CUSTOM_COMMAND(TARGET CMakeTestLibraryShared POST_BUILD
|
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/postbuild.txt")
|
|
|
|
ADD_CUSTOM_COMMAND(TARGET CMakeTestLibraryShared POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2002-06-03 13:40:34 -04:00
|
|
|
ARGS -E copy
|
2002-04-10 17:33:10 -04:00
|
|
|
"${Complex_BINARY_DIR}/Library/postbuild.txt"
|
2005-02-25 09:31:55 -05:00
|
|
|
"${Complex_BINARY_DIR}/Library/postbuild2.txt")
|
2002-04-10 17:33:10 -04:00
|
|
|
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
2002-01-19 21:24:55 -05:00
|
|
|
# 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.
|
2002-01-18 12:03:32 -05:00
|
|
|
#
|
|
|
|
ADD_CUSTOM_TARGET(custom_target1
|
|
|
|
ALL
|
|
|
|
${CREATE_FILE_EXE}
|
2002-01-18 19:21:43 -05:00
|
|
|
"${Complex_BINARY_DIR}/Library/custom_target1.txt")
|
2002-01-18 12:03:32 -05:00
|
|
|
|
|
|
|
ADD_DEPENDENCIES(custom_target1 create_file)
|
|
|
|
|
2002-01-19 21:24:55 -05:00
|
|
|
#
|
|
|
|
# Extra coverage
|
|
|
|
#
|
2005-06-02 14:10:37 -04:00
|
|
|
SET_SOURCE_FILES_PROPERTIES(file2 PROPERTIES ABSTRACT 1)
|
2002-01-19 21:24:55 -05:00
|
|
|
|
|
|
|
INSTALL_FILES(/tmp .h ${Complex_BINARY_DIR}/cmTestConfigure.h)
|
2002-01-20 00:12:27 -05:00
|
|
|
INSTALL_FILES(/tmp .cxx ${Complex_BINARY_DIR}/cmTestConfigure.h)
|
2002-01-18 19:21:43 -05:00
|
|
|
|
2006-10-02 11:14:00 -04:00
|
|
|
# Test creating a library that is not built by default.
|
2006-10-02 12:01:20 -04:00
|
|
|
ADD_LIBRARY(notInAllLib EXCLUDE_FROM_ALL notInAllLib.cxx)
|
2006-10-02 11:14:00 -04:00
|
|
|
|
2008-08-20 11:45:16 -04:00
|
|
|
# Create an imported target for if(TARGET) test in Executable dir.
|
|
|
|
# That test should not see this target.
|
|
|
|
ADD_LIBRARY(LibImportedTarget UNKNOWN IMPORTED)
|
|
|
|
|
2006-09-23 16:55:16 -04:00
|
|
|
# Test generation of preprocessed sources.
|
|
|
|
IF("${CMAKE_GENERATOR}" MATCHES "Makefile" AND CMAKE_MAKE_PROGRAM)
|
|
|
|
IF(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE)
|
2006-09-27 14:27:07 -04:00
|
|
|
# Skip running this part of the test on certain platforms
|
|
|
|
# until they are fixed.
|
|
|
|
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.
|
|
|
|
SET(MAYBE_ALL)
|
|
|
|
ENDIF(ARCH_COUNT GREATER 1)
|
|
|
|
|
|
|
|
# Custom target to try preprocessing invocation.
|
|
|
|
ADD_CUSTOM_TARGET(test_preprocess ${MAYBE_ALL}
|
2006-09-23 16:55:16 -04:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove 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}
|
|
|
|
)
|
|
|
|
ENDIF(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE)
|
|
|
|
ENDIF("${CMAKE_GENERATOR}" MATCHES "Makefile" AND CMAKE_MAKE_PROGRAM)
|