-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
61 lines (43 loc) · 1.3 KB
/
CMakeLists.txt
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cmake_minimum_required(VERSION 3.11...3.26)
if (${CMAKE_VERSION} VERSION_LESS 3.12)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
endif ()
find_program(CCACHE_PROGRAM ccache
PATHS D:\\ccache-4.8.1-windows-x86_64)
if (CCACHE_PROGRAM)
message(STATUS "Found ccache: ${CCACHE_PROGRAM}")
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_PROGRAM})
else ()
message(STATUS "Could not find ccache.")
endif ()
project(Enations VERSION 1.0
DESCRIPTION "Enemy Nations"
LANGUAGES CXX)
###############################
# enations.exe
###############################
add_subdirectory(enations_latest/src)
###############################
# makeriff.exe
###############################
add_subdirectory(tools/makeriff)
###############################
# sprite.exe
###############################
add_subdirectory(tools/sprite)
###############################
# wind22.lib
###############################
add_subdirectory(windward/wind22)
###############################
# cdf.exe
###############################
add_subdirectory(src/cdf)
###############################
# compit.exe
###############################
add_subdirectory(tools/compress)
###############################
# vdmplay.dll
###############################
add_subdirectory(tools/vdmplay)