aboutsummaryrefslogtreecommitdiffstats
path: root/liblangutil
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-12-17 22:00:39 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-12-17 22:01:02 +0800
commit2353f73c396e2c3c89baabf4e277d25abdfc526f (patch)
tree2e3cb1463f3b919bc661c3de2995391c9027aa00 /liblangutil
parent8d3617b7c522d74bcc36a1fbc1eb7c16bf96ad4d (diff)
downloaddexon-solidity-2353f73c396e2c3c89baabf4e277d25abdfc526f.tar.gz
dexon-solidity-2353f73c396e2c3c89baabf4e277d25abdfc526f.tar.zst
dexon-solidity-2353f73c396e2c3c89baabf4e277d25abdfc526f.zip
Add headers to targets in CMakeLists.txt.
Diffstat (limited to 'liblangutil')
-rw-r--r--liblangutil/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/liblangutil/CMakeLists.txt b/liblangutil/CMakeLists.txt
index 5a82f3ff..b172108b 100644
--- a/liblangutil/CMakeLists.txt
+++ b/liblangutil/CMakeLists.txt
@@ -1,13 +1,24 @@
# Solidity Commons Library (Solidity related sharing bits between libsolidity and libyul)
set(sources
CharStream.cpp
+ CharStream.h
ErrorReporter.cpp
+ ErrorReporter.h
+ EVMVersion.h
Exceptions.cpp
+ Exceptions.h
ParserBase.cpp
+ ParserBase.h
Scanner.cpp
+ Scanner.h
+ SourceLocation.h
SourceReferenceExtractor.cpp
+ SourceReferenceExtractor.h
SourceReferenceFormatter.cpp
+ SourceReferenceFormatter.h
Token.cpp
+ Token.h
+ UndefMacros.h
)
add_library(langutil ${sources})