diff options
author | Christian Parpart <christian@ethereum.org> | 2018-11-23 21:21:17 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-11-26 21:39:24 +0800 |
commit | cdd8c72c9d38a6638cd23db58079251b6a632e3b (patch) | |
tree | 62396cc259a8e34296963df6c6b20474a752b51b /liblangutil | |
parent | 96333f303373e073ef58a676983ed368fcd4b9f4 (diff) | |
download | dexon-solidity-cdd8c72c9d38a6638cd23db58079251b6a632e3b.tar.gz dexon-solidity-cdd8c72c9d38a6638cd23db58079251b6a632e3b.tar.zst dexon-solidity-cdd8c72c9d38a6638cd23db58079251b6a632e3b.zip |
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.
Diffstat (limited to 'liblangutil')
-rw-r--r-- | liblangutil/CMakeLists.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/liblangutil/CMakeLists.txt b/liblangutil/CMakeLists.txt index 722ca840..3d8bd37a 100644 --- a/liblangutil/CMakeLists.txt +++ b/liblangutil/CMakeLists.txt @@ -1,6 +1,12 @@ # Solidity Commons Library (Solidity related sharing bits between libsolidity and libyul) -file(GLOB sources "*.cpp") -file(GLOB headers "*.h") +set(sources + CharStream.cpp + ErrorReporter.cpp + Exceptions.cpp + ParserBase.cpp + Scanner.cpp + Token.cpp +) -add_library(langutil ${sources} ${headers}) +add_library(langutil ${sources}) target_link_libraries(langutil PUBLIC devcore) |