diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-10-25 00:01:56 +0000 |
---|---|---|
committer | andreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf> | 2014-10-25 00:01:56 +0000 |
commit | dbb94be50c67ce2d4a132b0811c2a8dac825b49b (patch) | |
tree | 7cf2dcfd4a8ec992a832911d8867d493ad337858 /CMakeLists.txt | |
parent | 16d900d3e8341663e53cb1f4c719578e12df829d (diff) |
started unit test for Object, fixed possible used of already freed ArgumentValidator when copying ValidatingFunction
git-svn-id: file:///var/local/svn/basicwriter@77 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 268a391..3b17908 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,9 +101,9 @@ ADD_LIBRARY(ousia_utils # ousia_script library (containing the code of t ADD_LIBRARY(ousia_script src/core/script/Function.cpp - src/core/script/Variant.cpp - src/core/script/ScriptEngine.cpp src/core/script/Object.cpp + src/core/script/ScriptEngine.cpp + src/core/script/Variant.cpp ) # Link the ousia executable against ousia_core @@ -128,6 +128,7 @@ IF(test) test/core/model/RangeSet test/core/utils/Utils test/core/script/Function + test/core/script/Object test/core/script/Variant ) |