iEnable coverall for tests.
parent
6c5e475d14
commit
4ac3a0af8f
|
@ -928,13 +928,3 @@ if(MSVC AND ASSIMP_INSTALL_PDB)
|
||||||
CONFIGURATIONS RelWithDebInfo
|
CONFIGURATIONS RelWithDebInfo
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (ASSIMP_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()
|
|
||||||
|
|
|
@ -122,4 +122,13 @@ ENDIF( WIN32 )
|
||||||
target_link_libraries( unit assimp ${platform_libs} )
|
target_link_libraries( unit assimp ${platform_libs} )
|
||||||
|
|
||||||
add_subdirectory(headercheck)
|
add_subdirectory(headercheck)
|
||||||
|
if (ASSIMP_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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue