aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 336ccd15a251d14ba1c84042456abebcb04988b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
cmake_policy(SET CMP0015 NEW)

aux_source_directory(. SRC_LIST)
include_directories(../libethereum)
link_directories(../libethereum)

add_executable(testeth ${SRC_LIST})

target_link_libraries(testeth libethereum)