mirror of
https://github.com/gelldur/EventBus.git
synced 2024-12-28 21:22:42 +08:00
Fix naming Catch2 library
This commit is contained in:
parent
5dbc203460
commit
354b0d08b4
@ -7,9 +7,9 @@ project(EventBusTest)
|
|||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
enable_testing()
|
enable_testing()
|
||||||
if(NOT TARGET Dexode::EventBus)
|
if (NOT TARGET Dexode::EventBus)
|
||||||
find_package(EventBus CONFIG REQUIRED)
|
find_package(EventBus CONFIG REQUIRED)
|
||||||
endif()
|
endif ()
|
||||||
|
|
||||||
find_package(Catch2 REQUIRED)
|
find_package(Catch2 REQUIRED)
|
||||||
|
|
||||||
@ -46,7 +46,11 @@ set(EVENTBUS_DEBUG_FLAGS
|
|||||||
|
|
||||||
target_compile_options(EventBusTest PUBLIC "$<$<CONFIG:DEBUG>:${EVENTBUS_DEBUG_FLAGS}>")
|
target_compile_options(EventBusTest PUBLIC "$<$<CONFIG:DEBUG>:${EVENTBUS_DEBUG_FLAGS}>")
|
||||||
|
|
||||||
|
if (TARGET Catch2::Catch2) # Fix for naming library
|
||||||
|
target_link_libraries(EventBusTest PUBLIC Dexode::EventBus Catch2::Catch2)
|
||||||
|
elseif (TARGET Catch2::Catch)
|
||||||
|
target_link_libraries(EventBusTest PUBLIC Dexode::EventBus Catch2::Catch)
|
||||||
|
endif ()
|
||||||
|
|
||||||
target_link_libraries(EventBusTest PUBLIC Dexode::EventBus Catch2::Catch)
|
|
||||||
|
|
||||||
add_test(NAME EventBus.UnitTests COMMAND EventBusTest)
|
add_test(NAME EventBus.UnitTests COMMAND EventBusTest)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user