forked from AndreaCensi/csm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
34 lines (28 loc) · 934 Bytes
/
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
cmake_minimum_required(VERSION 2.4)
cmake_policy(SET CMP0004 OLD)
SET(local_prefix "local_config/local-")
FIND_PROGRAM(HOSTNAME hostname PATHS $ENV{PATH})
IF(HOSTNAME)
# TODO: hostname does not accept -s on cygwin
IF(CYGWIN OR WIN32)
SET(hostname_params "")
ELSE(CYGWIN OR WIN32)
SET(hostname_params "-s")
ENDIF(CYGWIN OR WIN32)
EXEC_PROGRAM(${HOSTNAME} ARGS ${hostname_params} OUTPUT_VARIABLE host)
SET(local "${local_prefix}${host}.cmake")
SET(extension "$ENV{CSM_CONF}")
IF(extension)
SET(local "${local_prefix}${host}-${extension}.cmake")
ENDIF(extension)
IF(EXISTS ${local})
MESSAGE(STATUS "Including local configuration ${local}.")
INCLUDE(${local})
ELSE(EXISTS ${local})
MESSAGE(STATUS "Create a file named '${local}' if you want to add options.")
ENDIF(EXISTS ${local})
ELSE(HOSTNAME)
MESSAGE(STATUS "Program `hostname` not found. (don't worry)")
ENDIF(HOSTNAME)
ENABLE_TESTING()
SUBDIRS(sm)