Browse Source

Enableing test coverage for unittests.

Kim Kulling 8 years ago
parent
commit
76794f4aa7
2 changed files with 10 additions and 11 deletions
  1. 0 11
      code/CMakeLists.txt
  2. 10 0
      test/CMakeLists.txt

+ 0 - 11
code/CMakeLists.txt

@@ -928,14 +928,3 @@ if(MSVC AND ASSIMP_INSTALL_PDB)
     CONFIGURATIONS RelWithDebInfo
   )
 endif ()
-
-if (COVERALLS)
-    set(COVERAGE_SRCS ${assimp_src} )
-
-    # Create the coveralls target.
-    coveralls_setup(
-        "${COVERAGE_SRCS}" # The source files.
-        ON                 # If we should upload.
-        "${PROJECT_SOURCE_DIR}/cmake/") # (Optional) Alternate project cmake module path.
-endif()
-

+ 10 - 0
test/CMakeLists.txt

@@ -122,3 +122,13 @@ ENDIF( WIN32 )
 target_link_libraries( unit assimp ${platform_libs} )
 
 add_subdirectory(headercheck)
+if (COVERALLS)
+    set(COVERAGE_SRCS ${assimp_src} ${TEST_SRCS} )
+
+    # Create the coveralls target.
+    coveralls_setup(
+        "${COVERAGE_SRCS}" # The source files.
+        ON                 # If we should upload.
+        "${PROJECT_SOURCE_DIR}/cmake/") # (Optional) Alternate project cmake module path.
+endif()
+