2012-08-13 21:47:32 +04:00
|
|
|
remove_definitions(-DCMAKE_IS_REALLY_FUN)
|
2004-04-15 21:59:29 +04:00
|
|
|
|
2002-01-20 05:24:55 +03:00
|
|
|
#
|
|
|
|
# Small utility used to create file
|
|
|
|
# UTILITY_SOURCE is used for coverage and for getting the exact name
|
|
|
|
# of the executable.
|
|
|
|
#
|
2012-08-13 21:47:32 +04: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 ".")
|
2001-08-23 21:57:45 +04:00
|
|
|
|
2002-01-20 05:24:55 +03: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
|
2002-01-20 05:24:55 +03:00
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
aux_source_directory(ExtraSources LibrarySources)
|
|
|
|
set(LibrarySources ${LibrarySources}
|
2012-08-13 21:42:58 +04:00
|
|
|
file2
|
|
|
|
empty
|
|
|
|
create_file.cxx
|
|
|
|
GENERATED
|
2002-01-20 09:58:57 +03:00
|
|
|
nonexisting_file)
|
2012-08-13 21:47:32 +04:00
|
|
|
remove(LibrarySources create_file.cxx GENERATED nonexisting_file)
|
|
|
|
add_library(CMakeTestLibrary ${LibrarySources})
|
2002-01-17 23:49:08 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
if(WIN32)
|
|
|
|
if(NOT CYGWIN)
|
|
|
|
if(NOT BORLAND)
|
|
|
|
if(NOT MINGW)
|
|
|
|
target_link_libraries(CMakeTestLibrary
|
2012-08-13 21:42:58 +04:00
|
|
|
debug
|
2003-08-28 00:42:01 +04:00
|
|
|
user32.lib)
|
2012-08-13 21:47:32 +04:00
|
|
|
target_link_libraries(CMakeTestLibrary
|
2012-08-13 21:42:58 +04:00
|
|
|
optimized
|
2003-08-28 00:42:01 +04:00
|
|
|
kernel32.lib)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
2002-05-02 23:10:19 +04:00
|
|
|
|
2002-01-18 20:03:32 +03:00
|
|
|
#
|
2002-01-20 05:24:55 +03:00
|
|
|
# Create shared library
|
2002-01-18 20:03:32 +03:00
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
set(SharedLibrarySources sharedFile)
|
|
|
|
add_library(CMakeTestLibraryShared SHARED ${SharedLibrarySources})
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DTEST_C_FLAGS")
|
|
|
|
add_library(CMakeTestCLibraryShared SHARED testConly.c)
|
|
|
|
define_property(
|
2008-02-14 21:36:23 +03:00
|
|
|
TARGET PROPERTY FOO
|
|
|
|
BRIEF_DOCS "a test property"
|
|
|
|
FULL_DOCS "A simple etst proerty that means nothign and is used for nothing"
|
|
|
|
)
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(CMakeTestCLibraryShared PROPERTIES FOO BAR)
|
Haiku: Several fixes to platform module
* Do not define BEOS anymore (this includes workarounds which we don't
need most of the time in Haiku, so we prefer opt-in IF(HAIKU) in the
cmake files instead).
* On the other hand, do define UNIX (we are trying to be compliant) and
HAIKU (there is still a number of things we don't do like the
average UNIX clone)
* Do not use UnixPaths, as our filesystem hierarchy isn't anything like
what it expects.
* Do not use -nostart, which the compiler doesn't know about anymore.
This used to be an Haiku extension to gcc, and is equivalent to
-shared which is the default gcc option.
* While "dl" functions are provided in libroot, this is always
implicitly linked so there is no need to tell cmake about it.
* Forcing position-independent code is not needed, so remove it.
* On the other hand, include appropriate linker options for executables
and shared libraries.
* Support for the two available compilers in Haiku (gcc2 and gcc4) and
pick the right headers and libraries according to the currently
selected one.
* With the adoption of the package manager, the directory layout was
changed. Tell cmake where to look for header files and libraries.
* As we don't define BEOS anymore, enable the workaround we still need
for HAIKU as well. This is the lack of a libm (it is part of the
implicitly linked in libroot)
Applied-by: Rolf Eike Beer <eike@sf-mail.de>
2013-10-05 18:26:02 +04:00
|
|
|
if(NOT BEOS AND NOT WIN32 AND NOT HAIKU) # No libm on BeOS.
|
2012-08-13 21:47:32 +04:00
|
|
|
set_target_properties(CMakeTestCLibraryShared PROPERTIES LINK_FLAGS "-lm")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2012-08-13 21:47:32 +04:00
|
|
|
get_target_property(FOO_BAR_VAR CMakeTestCLibraryShared FOO)
|
|
|
|
if(${FOO_BAR_VAR} MATCHES "BAR")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2012-08-13 21:47:32 +04:00
|
|
|
message(SEND_ERROR "SET_TARGET_PROPERTIES or GET_TARGET_PROPERTY failed, FOO_BAR_VAR should be BAR, but is ${FOO_BAR_VAR}")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2002-12-21 01:15:45 +03:00
|
|
|
|
2006-09-15 22:31:24 +04:00
|
|
|
# Create static and shared lib of same name.
|
2012-08-13 21:47:32 +04: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-05-01 18:38:35 +04:00
|
|
|
PROPERTIES OUTPUT_NAME CMakeTestLink)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2002-04-08 21:36:18 +04:00
|
|
|
|
2002-01-18 20:03:32 +03:00
|
|
|
#
|
2005-02-25 17:31:55 +03: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-20 05:24:55 +03:00
|
|
|
# The 'complex' executable will then test if this file exists and remove it.
|
2002-01-18 20:03:32 +03:00
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
add_dependencies(CMakeTestLibraryShared create_file)
|
|
|
|
message("complex bin dir is ${Complex_BINARY_DIR}")
|
|
|
|
add_custom_command(TARGET CMakeTestLibraryShared PRE_BUILD
|
2005-02-25 17:31:55 +03:00
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/prebuild.txt")
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_command(TARGET CMakeTestLibraryShared PRE_BUILD
|
2005-02-25 17:31:55 +03:00
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/prelink.txt")
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_command(TARGET CMakeTestLibraryShared POST_BUILD
|
2005-02-25 17:31:55 +03:00
|
|
|
COMMAND ${CREATE_FILE_EXE}
|
|
|
|
ARGS "${Complex_BINARY_DIR}/Library/postbuild.txt")
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_command(TARGET CMakeTestLibraryShared POST_BUILD
|
2005-02-25 17:31:55 +03:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2002-06-03 21:40:34 +04:00
|
|
|
ARGS -E copy
|
2002-04-11 01:33:10 +04:00
|
|
|
"${Complex_BINARY_DIR}/Library/postbuild.txt"
|
2005-02-25 17:31:55 +03:00
|
|
|
"${Complex_BINARY_DIR}/Library/postbuild2.txt")
|
2002-04-11 01:33:10 +04:00
|
|
|
|
2002-01-18 20:03:32 +03:00
|
|
|
#
|
2002-01-20 05:24:55 +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
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_target(custom_target1
|
2002-01-18 20:03:32 +03:00
|
|
|
ALL
|
2012-08-13 21:42:58 +04:00
|
|
|
${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
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_dependencies(custom_target1 create_file)
|
2002-01-18 20:03:32 +03:00
|
|
|
|
2002-01-20 05:24:55 +03:00
|
|
|
#
|
|
|
|
# Extra coverage
|
|
|
|
#
|
2012-08-13 21:47:32 +04:00
|
|
|
set_source_files_properties(file2 PROPERTIES ABSTRACT 1)
|
2002-01-20 05:24:55 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
install_files(/tmp .h ${Complex_BINARY_DIR}/cmTestConfigure.h)
|
|
|
|
install_files(/tmp .cxx ${Complex_BINARY_DIR}/cmTestConfigure.h)
|
2002-01-19 03:21:43 +03:00
|
|
|
|
2006-10-02 19:14:00 +04:00
|
|
|
# Test creating a library that is not built by default.
|
2012-08-13 21:47:32 +04:00
|
|
|
add_library(notInAllLib EXCLUDE_FROM_ALL notInAllLib.cxx)
|
2006-10-02 19:14:00 +04:00
|
|
|
|
2008-08-20 19:45:16 +04:00
|
|
|
# Create an imported target for if(TARGET) test in Executable dir.
|
|
|
|
# That test should not see this target.
|
2012-08-13 21:47:32 +04:00
|
|
|
add_library(LibImportedTarget UNKNOWN IMPORTED)
|
2008-08-20 19:45:16 +04:00
|
|
|
|
2006-09-24 00:55:16 +04:00
|
|
|
# Test generation of preprocessed sources.
|
2012-08-13 21:47:32 +04:00
|
|
|
if("${CMAKE_GENERATOR}" MATCHES "Makefile" AND CMAKE_MAKE_PROGRAM)
|
|
|
|
if(CMAKE_CXX_CREATE_PREPROCESSED_SOURCE)
|
2006-09-27 22:27:07 +04:00
|
|
|
# Skip running this part of the test on certain platforms
|
|
|
|
# until they are fixed.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(MAYBE_ALL ALL)
|
|
|
|
list(LENGTH CMAKE_OSX_ARCHITECTURES ARCH_COUNT)
|
|
|
|
if(ARCH_COUNT GREATER 1)
|
2006-09-27 22:27:07 +04:00
|
|
|
# OSX does not support preprocessing more than one architecture.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(MAYBE_ALL)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2006-09-27 22:27:07 +04:00
|
|
|
|
|
|
|
# Custom target to try preprocessing invocation.
|
2012-08-13 21:47:32 +04:00
|
|
|
add_custom_target(test_preprocess ${MAYBE_ALL}
|
2006-09-24 00: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}
|
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|