-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
76 lines (59 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
cmake_minimum_required(VERSION 3.0.0)
set(ETH_CMAKE_DIR "${CMAKE_CURRENT_LIST_DIR}/cmake" CACHE PATH "The the path to the cmake directory")
list(APPEND CMAKE_MODULE_PATH ${ETH_CMAKE_DIR})
include(EthToolchains)
# Set cmake_policies
include(EthPolicy)
eth_policy()
# project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.5.9")
project(solidity VERSION ${PROJECT_VERSION} LANGUAGES CXX C)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Setup cccache.
include(EthCcache)
# Let's find our dependencies
include(EthDependencies)
include(jsoncpp)
include_directories(SYSTEM ${JSONCPP_INCLUDE_DIR})
find_package(Threads)
# Figure out what compiler and system are we using
include(EthCompilerSettings)
# Include utils
include(EthUtils)
# Create license.h from LICENSE.txt and template
# Converting to char array is required due to MSVC's string size limit.
file(READ ${CMAKE_SOURCE_DIR}/LICENSE.txt LICENSE_TEXT HEX)
string(REGEX MATCHALL ".." LICENSE_TEXT "${LICENSE_TEXT}")
string(REGEX REPLACE ";" ",\n\t0x" LICENSE_TEXT "${LICENSE_TEXT}")
set(LICENSE_TEXT "0x${LICENSE_TEXT}")
configure_file("${CMAKE_SOURCE_DIR}/cmake/templates/license.h.in" include/license.h)
include(EthOptions)
configure_project(TESTS)
include(SmartAceOptions)
configure_smartace()
add_subdirectory(libdevcore)
add_subdirectory(liblangutil)
add_subdirectory(libevmasm)
add_subdirectory(libyul)
add_subdirectory(libsolidity)
add_subdirectory(libsolc)
add_subdirectory(libverify)
add_subdirectory(solc)
install(DIRECTORY libverify/ DESTINATION include/solc/libverify)
install(DIRECTORY cmodelres/yaml/ DESTINATION include/solc/yaml)
install(FILES cmodelres/CMakeLists.txt DESTINATION share/solc/project)
install(FILES cmodelres/Klee.cmake DESTINATION share/solc/project/cmake)
install(FILES cmodelres/Interactive.cmake DESTINATION share/solc/project/cmake)
install(FILES cmodelres/LibFuzzer.cmake DESTINATION share/solc/project/cmake)
install(FILES cmodelres/Seahorn.cmake DESTINATION share/solc/project/cmake)
install(FILES cmake/SmartAceOptions.cmake DESTINATION share/solc/project/cmake)
if (TESTS)
add_subdirectory(test)
endif()
# Sets up CPack for distributions.
set(CPACK_PACKAGE_VENDOR "SmartACE")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "SmartACE")
set(CPACK_PACKAGE_VERSION "arak")
set(CPACK_PACKAGE_FILE_NAME "smartace-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_NAME}")
include(CPack)