diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-11-13 13:31:59 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-11-13 13:31:59 +0100 |
commit | 95a82214320cf2b44786654a78fbd85d2898b3b5 (patch) | |
tree | 31070c0422508e92acc726fd8cb687b34fda7a9f /CMakeLists.txt | |
parent | b65029f94fbbbe897187681224ec0a0833734776 (diff) |
refactored NodeManager and Node class to Manager and Managed classes
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0462460..73e2fb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,7 @@ ADD_DEFINITIONS( # ousia_script library (containing the bindings needed for script engines) ADD_LIBRARY(ousia_core - src/core/dom/Node + src/core/dom/Managed src/core/script/Function src/core/script/Object src/core/script/ScriptEngine @@ -132,7 +132,7 @@ IF(TEST) # Add all unit test files ADD_EXECUTABLE(ousia_test_core - test/core/dom/NodeTest + test/core/dom/ManagedTest test/core/script/FunctionTest test/core/script/ObjectTest test/core/script/VariantTest |