2014-10-06 15:13:52 +00:00
|
|
|
cmake_policy(SET CMP0015 NEW)
|
2014-12-10 10:39:41 +00:00
|
|
|
# this policy was introduced in cmake 3.0
|
|
|
|
# remove if, once 3.0 will be used on unix
|
2014-12-10 11:49:12 +00:00
|
|
|
if (${CMAKE_MAJOR_VERSION} GREATER 2)
|
2014-12-10 10:39:41 +00:00
|
|
|
# old policy do not use MACOSX_RPATH
|
|
|
|
cmake_policy(SET CMP0042 OLD)
|
|
|
|
endif()
|
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})
|
2014-12-07 10:29:38 +00:00
|
|
|
include_directories(${JSONCPP_INCLUDE_DIRS})
|
2014-12-05 16:00:26 +00:00
|
|
|
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-12-11 14:06:11 +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-12-11 14:06:11 +00:00
|
|
|
target_link_libraries(${EXECUTABLE} ${JSONCPP_LIBRARIES})
|
2014-12-07 10:29:38 +00:00
|
|
|
target_link_libraries(${EXECUTABLE} evmcore)
|
|
|
|
target_link_libraries(${EXECUTABLE} devcore)
|
2015-01-07 15:39:21 +00:00
|
|
|
target_link_libraries(${EXECUTABLE} devcrypto)
|
2014-10-06 15:13:52 +00:00
|
|
|
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|