mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
522 B
CMake
19 lines
522 B
CMake
cmake_policy(SET CMP0015 NEW)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(../libethereum)
|
|
link_directories(../libethereum)
|
|
|
|
add_executable(testeth ${SRC_LIST})
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
target_link_libraries(testeth ethereum)
|
|
target_link_libraries(testeth miniupnpc)
|
|
target_link_libraries(testeth ${CRYPTOPP_LIBRARIES})
|
|
target_link_libraries(testeth gmp)
|
|
target_link_libraries(testeth boost_system)
|
|
target_link_libraries(testeth boost_filesystem)
|
|
target_link_libraries(testeth ${CMAKE_THREAD_LIBS_INIT})
|