forked from jespa007/zetscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
29 lines (25 loc) · 783 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
29 lines (25 loc) · 783 Bytes
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
# CMakeLists.txt
#
# Copyright 2021 by
# Jordi Espada
#
# Say
#
# cmake CMakeLists.txt
#
# to create a Makefile that builds a static version of the library. For a
# dynamic library, use
#
# cmake CMakeLists.txt -DBUILD_SHARED_LIBS:BOOL=true
#
#
# instead. Please refer to the cmake manual for further options, in
# particular, how to modify compilation and linking parameters.
#
cmake_minimum_required(VERSION 3.15)
cmake_policy(SET CMP0091 NEW) # To enable MSVC_RUNTIME_LIBRARY. It has effect only when policy CMP0091 is set to NEW prior to the first project()
project(zetscript)
MESSAGE("-- binary dir:" ${PROJECT_BINARY_DIR} )
MESSAGE("-- source dir:" ${PROJECT_SOURCE_DIR} )
# Recurse into the "src" subdirectories.
add_subdirectory (src)