Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/cpp11_v2/test/core/CMakeLists.txt @ 10736

Last change on this file since 10736 was 10736, checked in by landauf, 9 years ago

fixed range based for-loop: ObjectList now returns an iterator
added tests and refactored construction of Iterator/IteratorBase/ObjectListIterator

  • Property svn:eol-style set to native
File size: 992 bytes
Line 
1ORXONOX_ADD_EXECUTABLE(
2    core_test
3    EXCLUDE_FROM_ALL
4    NO_INSTALL
5  LINK_LIBRARIES
6    core
7    gmock_orxonox
8  SOURCE_FILES
9    ${GMOCK_MAIN}
10    class/IdentifiableTest.cc
11    class/IdentifierTest.cc
12    class/IdentifierClassHierarchyTest.cc
13    class/IdentifierSimpleClassHierarchyTest.cc
14    class/IdentifierNestedClassHierarchyTest.cc
15    class/IdentifierExternalClassHierarchyTest.cc
16    class/OrxonoxClassTest.cc
17    class/OrxonoxInterfaceTest.cc
18    class/SubclassIdentifierTest.cc
19    class/SuperTest.cc
20    command/CommandTest.cc
21    object/ClassFactoryTest.cc
22    object/ContextTest.cc
23    object/DestroyableTest.cc
24    object/IteratorTest.cc
25    object/ListableTest.cc
26    object/ObjectListBaseTest.cc
27    object/ObjectListTest.cc
28    object/ObjectListIteratorTest.cc
29    object/StrongPtrTest.cc
30    object/WeakPtrTest.cc
31    singleton/ScopeTest.cc
32)
33ADD_DEPENDENCIES(all_tests core_test)
34
35ADD_TEST(core_test ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/core_test --gtest_output=xml)
Note: See TracBrowser for help on using the repository browser.