66 lines
2.1 KiB
CMake
66 lines
2.1 KiB
CMake
#############################################################################
|
|
## gmio
|
|
## Copyright Fougue (2 Mar. 2015)
|
|
## contact@fougue.pro
|
|
##
|
|
## This software is a reusable library whose purpose is to provide complete
|
|
## I/O support for various CAD file formats (eg. STL)
|
|
##
|
|
## This software is governed by the CeCILL-B license under French law and
|
|
## abiding by the rules of distribution of free software. You can use,
|
|
## modify and/ or redistribute the software under the terms of the CeCILL-B
|
|
## license as circulated by CEA, CNRS and INRIA at the following URL
|
|
## "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
|
|
#############################################################################
|
|
|
|
enable_testing()
|
|
set(CMAKE_CTEST_COMMAND ctest -V)
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND})
|
|
|
|
include_directories(${CMAKE_BINARY_DIR}/src/gmio_core) # For generated header files
|
|
|
|
add_executable(
|
|
test_internal
|
|
EXCLUDE_FROM_ALL
|
|
stream_buffer.c
|
|
utils.c
|
|
test_internal.c
|
|
../src/gmio_core/stream.c
|
|
../src/gmio_core/internal/string_parse.c)
|
|
|
|
add_executable(
|
|
test_platform EXCLUDE_FROM_ALL test_platform.c)
|
|
|
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/models
|
|
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
|
|
add_executable(
|
|
test_stl
|
|
EXCLUDE_FROM_ALL
|
|
test_stl_io.c
|
|
../src/gmio_core/buffer.c
|
|
../src/gmio_core/stream.c
|
|
../src/gmio_core/internal/string_parse.c
|
|
../src/gmio_stl/stl_format.c
|
|
../src/gmio_stl/stl_io.c
|
|
../src/gmio_stl/stla_read.c
|
|
../src/gmio_stl/stlb_read.c
|
|
../src/gmio_stl/internal/stl_rw_common.c
|
|
../src/gmio_stl/internal/stla_write.c
|
|
../src/gmio_stl/internal/stlb_byte_swap.c
|
|
../src/gmio_stl/internal/stlb_write.c)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
|
target_link_libraries(test_internal m) # -lm
|
|
target_link_libraries(test_stl m) # -lm
|
|
endif()
|
|
|
|
add_test(test_internal test_internal)
|
|
add_test(test_platform test_platform)
|
|
add_test(test_stl test_stl)
|
|
|
|
add_dependencies(
|
|
check
|
|
test_internal
|
|
test_platform
|
|
test_stl)
|