blob: 84474a8ef4276b17f75bed8dbf406a8a3943bd00 (
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
|
PROJECT(SUBDIR)
SUBDIRS(Executable EXCLUDE_FROM_ALL "Some Examples")
WRITE_FILE(${SUBDIR_BINARY_DIR}/ShouldBeHere "This file should exist.")
#WATCOM WMAKE does not support + in the name of a file!
IF(WATCOM)
SET(PLUS_NAME_FILES
"Another Subdir/pair_int.int.c"
vcl_algorithm_vcl_pair_double.foo.c)
ELSE(WATCOM)
SET(PLUS_NAME_FILES
"Another Subdir/pair+int.int.c"
vcl_algorithm+vcl_pair+double.foo.c)
ENDIF(WATCOM)
ADD_EXECUTABLE(TestFromSubdir
"Another Subdir/testfromsubdir.c"
"Another Subdir/secondone"
${PLUS_NAME_FILES}
)
AUX_SOURCE_DIRECTORY(ThirdSubDir SOURCES)
IF(WATCOM)
FOREACH(f ${SOURCES})
IF("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
ELSE("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
SET(SOURCES2 ${f} ${SOURCES2})
ENDIF("${f}" STREQUAL "ThirdSubDir/pair+int.int1.c")
ENDFOREACH(f)
SET(SOURCES ${SOURCES2})
SET(SOURCES ${SOURCES}
vcl_algorithm_vcl_pair_double.foo.c)
ELSE(WATCOM)
FOREACH(f ${SOURCES})
IF("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
ELSE("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
SET(SOURCES2 ${f} ${SOURCES2})
ENDIF("${f}" STREQUAL "ThirdSubDir/pair_int.int1.c")
ENDFOREACH(f)
SET(SOURCES ${SOURCES2})
SET(SOURCES ${SOURCES}
vcl_algorithm+vcl_pair+double.foo.c)
ENDIF(WATCOM)
ADD_EXECUTABLE(TestWithAuxSourceDir ${SOURCES})
|