forked from dimitar-asenov/Envision
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
55 lines (44 loc) · 1.62 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
cmake_minimum_required(VERSION 3.2.2)
# Prevent in-source builds
if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source builds can be messy and therefore disabled. Please remove CMakeCache.txt and the CMakeFiles/ directory. Then build out-of-source.")
endif()
add_subdirectory("Core")
add_subdirectory("Launcher")
# These two are just for testing plug-in linking
add_subdirectory("HelloWorld")
add_subdirectory("APIDepTest")
# Basic utilities
add_subdirectory("SelfTest")
add_subdirectory("Logger")
# Generic Layer - Base
add_subdirectory("ModelBase")
add_subdirectory("FilePersistence")
add_subdirectory("VisualizationBase")
add_subdirectory("InteractionBase")
# Generic Layer - Extras
add_subdirectory("Comments")
add_subdirectory("Export")
add_subdirectory("VersionControlUI")
# Object-Oriented layer - Base
add_subdirectory("OOModel")
add_subdirectory("OOVisualization")
add_subdirectory("OOInteraction")
# Object-Oriented layer - Extras
add_subdirectory("CodeReview")
add_subdirectory("JavaExport")
add_subdirectory("OODebug") # uses JavaExport
add_subdirectory("CppExport")
add_subdirectory("CppImport")
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
# This project uses C++11 ABI tags which were introduced with GCC 5 and are currently not
# supported by Clang.
add_subdirectory("PythonWrapperGenerator")
endif()
add_subdirectory("InformationScripting") # uses the generator and OODebug
# Object-Oriented layer - Contracts
add_subdirectory("ContractsLibrary")
add_subdirectory("Alloy")
# Object-Oriented layer - Demos
add_subdirectory("CustomMethodCall")
add_subdirectory("ControlFlowVisualization")