-
Notifications
You must be signed in to change notification settings - Fork 24
/
CMakeLists.txt
56 lines (49 loc) · 2.15 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
###############################################################################
# This file is part of the Incubed project.
# Sources: https://github.com/blockchainsllc/in3
#
# Copyright (C) 2018-2020 slock.it GmbH, Blockchains LLC
#
#
# COMMERCIAL LICENSE USAGE
#
# Licensees holding a valid commercial license may use this file in accordance
# with the commercial license agreement provided with the Software or, alternatively,
# in accordance with the terms contained in a written agreement between you and
# slock.it GmbH/Blockchains LLC. For licensing terms and conditions or further
# information please contact slock.it at [email protected].
#
# Alternatively, this file may be used under the AGPL license as follows:
#
# AGPL LICENSE USAGE
#
# This program is free software: you can redistribute it and/or modify it under the
# terms of the GNU Affero General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
# [Permissions of this strong copyleft license are conditioned on making available
# complete source code of licensed works and modifications, which include larger
# works using a licensed work, under the same license. Copyright and license notices
# must be preserved. Contributors provide an express grant of patent rights.]
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
###############################################################################
cmake_minimum_required(VERSION 3.5.1)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/scripts/cmake_modules/")
# project name
project(in3)
include("c/options.cmake")
IF (WASM)
add_subdirectory(wasm/src)
ENDIF (WASM)
# build tests
if(TEST)
add_subdirectory(c/test)
endif(TEST)
add_subdirectory(c)
IF (JAVA)
add_subdirectory(java)
ENDIF (JAVA)