solidity/liblll/CMakeLists.txt
Christian Parpart cdd8c72c9d CMake: Explicitly state which files to compile instead of relying on globbing.
Also remove header file lists, as there is no need to add them to
add_library() or add_executable(), which should lower maintenance of the cmake files.
2018-11-26 14:39:24 +01:00

10 lines
155 B
CMake

set(sources
CodeFragment.cpp
Compiler.cpp
CompilerState.cpp
Parser.cpp
)
add_library(lll ${sources})
target_link_libraries(lll PUBLIC evmasm devcore)