Skip to content

Commit 2da10c0

Browse files
committed
Use the target kigumi
1 parent 8cc9979 commit 2da10c0

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

tests/CMakeLists.txt

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(TARGET kigumi-test)
1+
set(TARGET kigumi_tests)
22

33
add_executable(${TARGET}
44
bounded_side_test.cc
@@ -10,25 +10,15 @@ add_executable(${TARGET}
1010
)
1111

1212
if(UNIX)
13-
target_compile_options(${TARGET} PRIVATE -Wall -Wextra -Werror -fsanitize=undefined)
13+
target_compile_options(${TARGET} PRIVATE -Wall -Wextra -Werror)
1414
elseif(MSVC)
1515
target_compile_options(${TARGET} PRIVATE /W4 /WX /wd4702)
1616
endif()
1717

18-
target_include_directories(${TARGET} PRIVATE
19-
${PROJECT_SOURCE_DIR}/include
20-
)
21-
2218
target_link_libraries(${TARGET} PRIVATE
23-
Boost::container
24-
Boost::container_hash
25-
Boost::endian
26-
Boost::iterator
27-
Boost::range
28-
CGAL::CGAL
2919
GTest::gtest
3020
GTest::gtest_main
31-
-fsanitize=undefined
21+
kigumi
3222
)
3323

3424
add_test(NAME ${TARGET} COMMAND $<TARGET_FILE:${TARGET}>)

0 commit comments

Comments
 (0)