solidity/CMakeLists.txt

31 lines
745 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.0.0)
2015-08-19 12:57:25 +00:00
2015-09-08 10:50:20 +00:00
set(ETH_CMAKE_DIR "${CMAKE_CURRENT_LIST_DIR}/../helpers/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})
# Set cmake_policies
include(EthPolicy)
eth_policy()
# project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.1.0")
project(solidity VERSION ${PROJECT_VERSION})
# Let's find our dependencies
2015-08-19 12:57:25 +00:00
include(EthDependencies)
# Figure out what compiler and system are we using
2015-08-19 12:57:25 +00:00
include(EthCompilerSettings)
# Include helper macros
include(EthExecutableHelper)
# Include utils
include(EthUtils)
2015-08-19 12:57:25 +00:00
add_subdirectory(libsolidity)
add_subdirectory(solc)
add_subdirectory(test)
2015-08-19 12:57:25 +00:00
# TODO installation and packaging rules