2015-08-24 13:51:52 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0.0)
|
2015-08-19 12:57:25 +00:00
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
set(ETH_CMAKE_DIR "${CMAKE_CURRENT_LIST_DIR}/cmake" CACHE PATH "The the path to the cmake directory")
|
2015-08-19 12:57:25 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH ${ETH_CMAKE_DIR})
|
|
|
|
|
2015-08-24 13:51:52 +00:00
|
|
|
# Set cmake_policies
|
|
|
|
include(EthPolicy)
|
|
|
|
eth_policy()
|
|
|
|
|
|
|
|
# project name and version should be set after cmake_policy CMP0048
|
2016-11-22 14:44:48 +00:00
|
|
|
set(PROJECT_VERSION "0.4.7")
|
2015-08-24 13:51:52 +00:00
|
|
|
project(solidity VERSION ${PROJECT_VERSION})
|
2015-08-19 22:55:41 +00:00
|
|
|
|
|
|
|
# Let's find our dependencies
|
2015-08-19 12:57:25 +00:00
|
|
|
include(EthDependencies)
|
2016-10-20 09:58:25 +00:00
|
|
|
include(deps/jsoncpp.cmake)
|
2015-08-19 22:55:41 +00:00
|
|
|
|
|
|
|
# Figure out what compiler and system are we using
|
2015-08-19 12:57:25 +00:00
|
|
|
include(EthCompilerSettings)
|
|
|
|
|
2015-08-19 22:55:41 +00:00
|
|
|
# Include helper macros
|
|
|
|
include(EthExecutableHelper)
|
|
|
|
|
2015-08-24 13:51:52 +00:00
|
|
|
# Include utils
|
|
|
|
include(EthUtils)
|
2015-08-19 12:57:25 +00:00
|
|
|
|
2015-09-11 11:43:58 +00:00
|
|
|
include(EthOptions)
|
2015-09-16 13:55:25 +00:00
|
|
|
configure_project(TESTS)
|
2015-09-11 11:43:58 +00:00
|
|
|
|
2016-08-01 05:25:37 +00:00
|
|
|
add_subdirectory(libdevcore)
|
2016-03-21 18:37:15 +00:00
|
|
|
add_subdirectory(libevmasm)
|
2015-08-19 22:55:41 +00:00
|
|
|
add_subdirectory(libsolidity)
|
|
|
|
add_subdirectory(solc)
|
2016-04-06 21:47:38 +00:00
|
|
|
|
2015-09-14 16:36:39 +00:00
|
|
|
if (NOT EMSCRIPTEN)
|
2016-03-21 18:36:01 +00:00
|
|
|
add_subdirectory(liblll)
|
2016-03-21 18:32:42 +00:00
|
|
|
add_subdirectory(lllc)
|
|
|
|
endif()
|
2015-08-19 12:57:25 +00:00
|
|
|
|
2016-04-06 21:47:38 +00:00
|
|
|
if (TESTS AND NOT EMSCRIPTEN)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|