Skip to content

Commit c9bccae

Browse files
committed
prefix test source file names with test
1 parent ac3d9ff commit c9bccae

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ include(CTest)
1616
option(IS_TESTING "Build for CTest" OFF)
1717
message(STATUS "IS_TESTING: ${IS_TESTING}")
1818

19-
add_executable(SliceWrapper test/SliceWrapper.cpp)
19+
add_executable(SliceWrapper test/testSliceWrapper.cpp)
2020
target_include_directories(SliceWrapper PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src) #hack - this should be a header-only library
2121
target_link_libraries(SliceWrapper Omega_h::omega_h)
2222
target_link_libraries(SliceWrapper Cabana::cabanacore)
2323
target_compile_definitions(SliceWrapper PUBLIC ENABLE_CABANA)
2424

25-
add_executable(MeshField test/MeshField.cpp)
25+
add_executable(MeshField test/testMeshField.cpp)
2626
target_include_directories(MeshField PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/src) #hack - this should be a header-only library
2727
target_link_libraries(MeshField Omega_h::omega_h)
2828
target_link_libraries(MeshField Cabana::cabanacore)

0 commit comments

Comments
 (0)