blob: 914339e74ff8398f27a9c6ab331581b5536ac196 (
plain) (
blame)
1
2
3
4
5
6
|
file(GLOB sources "*.cpp")
file(GLOB headers "*.h")
add_library(evmasm ${sources} ${headers})
target_link_libraries(evmasm PUBLIC devcore jsoncpp)
target_include_directories(evmasm PUBLIC ..)
|