From aaaf493e3cddcc2cb0797ca3fe7eca4f12a04453 Mon Sep 17 00:00:00 2001 From: Andreas Stöckel Date: Sun, 23 Nov 2014 01:39:42 +0100 Subject: imlemented Logger, TerminalLogger, OusiaException, LoggableException --- CMakeLists.txt | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d62197..354f13b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,18 +97,20 @@ ADD_DEFINITIONS( # ousia_script library (containing the bindings needed for script engines) # TODO: This is not only the script library. ADD_LIBRARY(ousia_core - src/core/Managed - src/core/Node - src/core/script/Function - src/core/script/Object - src/core/script/ScriptEngine - src/core/script/Variant src/core/BufferedCharReader src/core/CodeTokenizer src/core/CSSParser + src/core/Exceptions + src/core/Logger + src/core/Managed + src/core/Node src/core/Tokenizer src/core/Typesystem src/core/Utils + src/core/script/Function + src/core/script/Object + src/core/script/ScriptEngine + src/core/script/Variant ) # ousia_plugin_mozjs library @@ -137,18 +139,19 @@ IF(TEST) # Add all unit test files ADD_EXECUTABLE(ousia_test_core - test/core/ManagedTest - test/core/ManagedContainersTest - test/core/NodeTest - test/core/script/FunctionTest - test/core/script/ObjectTest - test/core/script/VariantTest test/core/BufferedCharReaderTest test/core/CodeTokenizerTest test/core/CSSParserTest + test/core/LoggerTest + test/core/ManagedTest + test/core/ManagedContainersTest + test/core/NodeTest test/core/RangeSetTest test/core/TokenizerTest test/core/UtilsTest + test/core/script/FunctionTest + test/core/script/ObjectTest + test/core/script/VariantTest ) TARGET_LINK_LIBRARIES(ousia_test_core -- cgit v1.2.3