blob: 798b6e1e08911c33aa6d33bb414a1a76eb85137e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
AUX_SOURCE_DIRECTORY(ExtraSources LibrarySources)
# SOURCE_FILES_REMOVE is used for Coverage
SOURCE_FILES(LibrarySources file2 GENERATED nonexisting_file)
SOURCE_FILES_REMOVE(LibrarySources GENERATED nonexisting_file)
ADD_LIBRARY(CMakeTestLibrary LibrarySources)
SOURCE_FILES(SharedLibrarySources sharedFile)
ADD_LIBRARY(CMakeTestLibraryShared SHARED SharedLibrarySources)
#
# Small utility used to create file
#
UTILITY_SOURCE(CREATE_FILE_EXE create_file "." create_file.cxx)
ADD_EXECUTABLE(create_file create_file.cxx)
#
# Attach a post-build custom-command to the lib.
# It run ${CREATE_FILE_EXE} which will create the file
# ${Complex_BINARY_DIR}/postbuild.txt.
# The 'complex' executable will then test if this file exists,
# and remove it.
#
ADD_DEPENDENCIES(CMakeTestLibraryShared create_file)
ADD_CUSTOM_COMMAND(SOURCE CMakeTestLibraryShared
COMMAND ${CREATE_FILE_EXE}
ARGS "${Complex_BINARY_DIR}/postbuild.txt"
TARGET CMakeTestLibraryShared)
#
# Add custom target
# It run ${CREATE_FILE_EXE} which will create the file
# ${Complex_BINARY_DIR}/custom_target1.txt.
# The 'complex' executable will then test if this file exists,
# and remove it.
#
ADD_CUSTOM_TARGET(custom_target1
ALL
${CREATE_FILE_EXE}
"${Complex_BINARY_DIR}/custom_target1.txt")
ADD_DEPENDENCIES(custom_target1 create_file)
|