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