u01: Change name of library

The task requires this name.
This commit is contained in:
Simon Bruder 2023-04-22 13:59:08 +02:00
parent 18efa58df8
commit 47e5d9c522

View file

@ -5,12 +5,12 @@ add_library(tree SHARED node.cpp)
# ~~~~~~ # ~~~~~~
# This can be changed to STATIC to build and link a static library. # This can be changed to STATIC to build and link a static library.
add_executable(main main.cpp) add_executable(main main.cpp)
target_link_libraries(main ecg_tree) target_link_libraries(main tree)
find_package(Catch2 3) find_package(Catch2 3)
if(Catch2_FOUND) if(Catch2_FOUND)
add_executable(tests tests.cpp) add_executable(tests tests.cpp)
target_link_libraries(tests PRIVATE Catch2::Catch2WithMain ecg_tree) target_link_libraries(tests PRIVATE Catch2::Catch2WithMain tree)
include(CTest) include(CTest)
include(Catch) include(Catch)
@ -18,4 +18,4 @@ if(Catch2_FOUND)
endif() endif()
install(TARGETS main) install(TARGETS main)
install(TARGETS ecg_tree DESTINATION lib) install(TARGETS tree DESTINATION lib)