Skip to content

Commit

Permalink
unify underscore hyphen conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
will-rowe committed Aug 10, 2020
1 parent cb1bc65 commit af70a18
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ script:
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- make -j2
- ../bin/artic_tests
- ../bin/artic-tools_tests
- ../bin/artic-tools -v
3 changes: 0 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ add_subdirectory(extlib/spdlog)
# rapidcsv
include_directories(${PROJECT_SOURCE_DIR}/extlib/rapidcsv/src)

# ntHash
#include_directories(${PROJECT_SOURCE_DIR}/extlib/ntHash)

# google test
if(BUILD_TESTING)
add_subdirectory(extlib/googletest)
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ file(
"${PROJECT_SOURCE_DIR}/tests/*.[ch]pp"
)

add_executable(artic_tests ${TEST_FILES})
add_executable(artic-tools_tests ${TEST_FILES})

target_link_libraries(
artic_tests
artic-tools_tests
artic_static
gtest
gtest_main
)

file(COPY data DESTINATION .)
target_compile_definitions(
artic_tests
artic-tools_tests
PRIVATE
TEST_DATA_PATH="${PROJECT_SOURCE_DIR}/tests/data/"
)

gtest_add_tests(TARGET artic_tests)
gtest_add_tests(TARGET artic-tools_tests)

0 comments on commit af70a18

Please sign in to comment.