CMake/Tests/Complex/Library/CMakeLists.txt

99 lines
3.3 KiB
CMake
Raw Normal View History

2004-04-15 21:59:29 +04: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.
#
UTILITY_SOURCE(CREATE_FILE_EXE create_file "." create_file.cxx)
ADD_EXECUTABLE(create_file create_file.cxx)
2001-08-23 21:57:45 +04:00
#
# Create static library
2002-01-20 09:58:57 +03:00
# SOURCE_FILES_REMOVE is used for Coverage. empty.h is included for coverage
#
AUX_SOURCE_DIRECTORY(ExtraSources LibrarySources)
2005-06-02 22:56:50 +04:00
SET(LibrarySources ${LibrarySources}
2002-01-20 09:58:57 +03:00
file2
empty
create_file.cxx
GENERATED
nonexisting_file)
2005-06-02 22:56:50 +04:00
REMOVE(LibrarySources create_file.cxx GENERATED nonexisting_file)
ADD_LIBRARY(CMakeTestLibrary ${LibrarySources})
2002-05-02 23:10:19 +04:00
IF(WIN32)
IF(NOT CYGWIN)
2002-05-04 02:10:49 +04:00
IF(NOT BORLAND)
IF(NOT MINGW)
TARGET_LINK_LIBRARIES(CMakeTestLibrary
debug
user32.lib)
TARGET_LINK_LIBRARIES(CMakeTestLibrary
optimized
kernel32.lib)
ENDIF(NOT MINGW)
2002-05-04 02:10:49 +04:00
ENDIF(NOT BORLAND)
2002-05-02 23:10:19 +04:00
ENDIF(NOT CYGWIN)
ENDIF(WIN32)
2002-01-18 20:03:32 +03:00
#
# Create shared library
2002-01-18 20:03:32 +03:00
#
2005-06-02 22:56:50 +04:00
SET(SharedLibrarySources sharedFile)
ADD_LIBRARY(CMakeTestLibraryShared SHARED ${SharedLibrarySources})
ADD_LIBRARY(CMakeTestModule MODULE moduleFile.c)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DTEST_C_FLAGS")
ADD_LIBRARY(CMakeTestCLibraryShared SHARED testConly.c)
2002-12-21 01:15:45 +03:00
SET_TARGET_PROPERTIES(CMakeTestCLibraryShared PROPERTIES FOO BAR)
SET_TARGET_PROPERTIES(CMakeTestCLibraryShared PROPERTIES LINK_FLAGS "-lm")
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")
2002-01-18 20:03:32 +03:00
#
# 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.
2002-01-18 20:03:32 +03: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")
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 21:40:34 +04:00
ARGS -E copy
"${Complex_BINARY_DIR}/Library/postbuild.txt"
"${Complex_BINARY_DIR}/Library/postbuild2.txt")
2002-01-18 20:03:32 +03: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 20:03:32 +03:00
#
ADD_CUSTOM_TARGET(custom_target1
ALL
${CREATE_FILE_EXE}
2002-01-19 03:21:43 +03:00
"${Complex_BINARY_DIR}/Library/custom_target1.txt")
2002-01-18 20:03:32 +03:00
ADD_DEPENDENCIES(custom_target1 create_file)
#
# Extra coverage
#
2005-06-02 22:10:37 +04:00
SET_SOURCE_FILES_PROPERTIES(file2 PROPERTIES ABSTRACT 1)
INSTALL_FILES(/tmp .h ${Complex_BINARY_DIR}/cmTestConfigure.h)
2002-01-20 08:12:27 +03:00
INSTALL_FILES(/tmp .cxx ${Complex_BINARY_DIR}/cmTestConfigure.h)
2002-01-19 03:21:43 +03:00