aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm
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 /libevmasm
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 'libevmasm')
-rw-r--r--libevmasm/CMakeLists.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/libevmasm/CMakeLists.txt b/libevmasm/CMakeLists.txt
index e0e3389a..42679938 100644
--- a/libevmasm/CMakeLists.txt
+++ b/libevmasm/CMakeLists.txt
@@ -1,20 +1,38 @@
set(sources
Assembly.cpp
+ Assembly.h
AssemblyItem.cpp
+ AssemblyItem.h
BlockDeduplicator.cpp
+ BlockDeduplicator.h
CommonSubexpressionEliminator.cpp
+ CommonSubexpressionEliminator.h
ConstantOptimiser.cpp
+ ConstantOptimiser.h
ControlFlowGraph.cpp
+ ControlFlowGraph.h
+ Exceptions.h
ExpressionClasses.cpp
+ ExpressionClasses.h
GasMeter.cpp
+ GasMeter.h
Instruction.cpp
+ Instruction.h
JumpdestRemover.cpp
+ JumpdestRemover.h
KnownState.cpp
+ KnownState.h
LinkerObject.cpp
+ LinkerObject.h
PathGasMeter.cpp
+ PathGasMeter.h
PeepholeOptimiser.cpp
+ PeepholeOptimiser.h
SemanticInformation.cpp
+ SemanticInformation.h
+ SimplificationRule.h
SimplificationRules.cpp
+ SimplificationRules.h
)
add_library(evmasm ${sources})