rename examples test.cpp -> main.cpp (#20)

This commit is contained in:
Lars Melchior
2019-04-16 19:57:05 +02:00
committed by GitHub
parent d3d8a6ab4f
commit 48b84b8cdf
4 changed files with 6 additions and 6 deletions

View File

@@ -47,9 +47,9 @@ CPMAddPackage(
# add executable
set (CMAKE_CXX_STANDARD 17)
add_executable(cpm-test test.cpp)
target_link_libraries(cpm-test LHC LarsParser Glue)
add_executable(cpm-test-complex main.cpp)
target_link_libraries(cpm-test-complex LHC LarsParser Glue)
# tests
enable_testing()
add_test(cpm-test cpm-test)
add_test(cpm-test-complex cpm-test-complex)