CMake/Tests/ComplexOneConfig/Executable/CMakeLists.txt

40 lines
1.0 KiB
CMake
Raw Normal View History

#
# Create exe.
#
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTEST_CXX_FLAGS")
2002-03-29 23:02:18 +03:00
SET_SOURCE_FILES_PROPERTIES(complex
COMPILE_FLAGS "-DFILE_HAS_EXTRA_COMPILE_FLAGS")
2001-08-23 21:57:45 +04:00
ADD_EXECUTABLE(complex complex)
SET(COMPLEX_LIBS CMakeTestLibrary;CMakeTestLibraryShared;CMakeTestCLibraryShared)
2002-04-11 19:30:05 +04:00
# Use LINK_LIBRARIES instead of TARGET_LINK_LIBRARIES to
LINK_LIBRARIES(${COMPLEX_LIBS})
2001-08-23 21:57:45 +04:00
#
# Link to CMake lib
# Specify the same one for debug/optimized to increase coverage
#
LINK_DIRECTORIES(${Complex_BINARY_DIR}/../../Source)
2002-01-19 03:21:43 +03:00
2002-01-20 09:58:57 +03:00
TARGET_LINK_LIBRARIES(complex
CMakeLib
debug CMakeLib
optimized CMakeLib)
2002-01-19 03:21:43 +03:00
2002-01-20 08:12:27 +03:00
#
# Output the files required by 'complex' to a file.
#
2002-01-22 21:30:06 +03:00
# This test has been moved to the 'required' subdir so that it
# has no side-effects on the current Makefile (duplicated source file
# due to source list expansion done twice).
#
2002-01-22 23:57:40 +03:00
SUBDIRS(Temp)
2002-01-20 08:12:27 +03:00
2002-01-19 04:32:06 +03:00
#
# Extra coverage.Not used.
2002-01-19 04:32:06 +03:00
#
2002-01-19 03:21:43 +03:00
INSTALL_TARGETS(/tmp complex)
INSTALL_PROGRAMS(/tmp complex)
SOURCE_GROUP(A_GROUP ".cxx")