2014-10-06 15:13:52 +00:00
|
|
|
cmake_policy(SET CMP0015 NEW)
|
2014-12-04 08:55:54 +00:00
|
|
|
set(CMAKE_AUTOMOC OFF)
|
2014-10-06 15:13:52 +00:00
|
|
|
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB")
|
|
|
|
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
|
2014-12-05 16:00:26 +00:00
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
include_directories(..)
|
|
|
|
|
2014-10-06 15:13:52 +00:00
|
|
|
set(EXECUTABLE solidity)
|
|
|
|
|
2014-11-08 22:48:24 +00:00
|
|
|
file(GLOB HEADERS "*.h")
|
2014-10-06 15:13:52 +00:00
|
|
|
if(ETH_STATIC)
|
2014-11-08 22:48:24 +00:00
|
|
|
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
2014-10-06 15:13:52 +00:00
|
|
|
else()
|
2014-11-08 22:48:24 +00:00
|
|
|
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
2014-10-06 15:13:52 +00:00
|
|
|
endif()
|
|
|
|
|
2014-11-06 13:50:18 +00:00
|
|
|
target_link_libraries(${EXECUTABLE} evmcore devcore)
|
2014-12-01 16:03:04 +00:00
|
|
|
# TODO: Temporary until PR 532 https://github.com/ethereum/cpp-ethereum/pull/532
|
|
|
|
# gets accepted. Then we can simply add jsoncpp as a dependency and not the
|
|
|
|
# whole of JSONRPC as we are doing right here
|
|
|
|
target_link_libraries(${EXECUTABLE} ${JSONRPC_LS})
|
2014-10-06 15:13:52 +00:00
|
|
|
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|