diff options
Diffstat (limited to 'Tests/Simple')
-rw-r--r-- | Tests/Simple/CMakeLists.txt | 8 | ||||
-rw-r--r-- | Tests/Simple/simpleWe.cpp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Tests/Simple/CMakeLists.txt b/Tests/Simple/CMakeLists.txt index dc965a733..a951c2da2 100644 --- a/Tests/Simple/CMakeLists.txt +++ b/Tests/Simple/CMakeLists.txt @@ -3,9 +3,9 @@ project (Simple) add_executable (Simple simple.cxx) -add_library (simpleLib STATIC - simpleLib.cxx - simpleCLib.c +add_library (simpleLib STATIC + simpleLib.cxx + simpleCLib.c simpleWe.cpp ) @@ -14,4 +14,4 @@ target_link_libraries (Simple simpleLib) # make sure optimized libs are not used by debug builds if(CMAKE_BUILD_TYPE MATCHES Debug) target_link_libraries(Simple optimized c:/not/here.lib ) -endif(CMAKE_BUILD_TYPE MATCHES Debug) +endif() diff --git a/Tests/Simple/simpleWe.cpp b/Tests/Simple/simpleWe.cpp index 859e07c06..e0f22ef8d 100644 --- a/Tests/Simple/simpleWe.cpp +++ b/Tests/Simple/simpleWe.cpp @@ -1,6 +1,6 @@ #include <stdio.h> -class Foo +class Foo { public: Foo() |