[ox/claw] Fix CMake generator expression OX_USE_STDLIB switch

This commit is contained in:
Gary Talent 2021-10-28 01:49:20 -05:00
parent 9394db44b1
commit 51f3c01c4e

View File

@ -5,10 +5,11 @@ add_library(
write.cpp write.cpp
) )
target_link_libraries( target_link_libraries(
OxClaw PUBLIC OxClaw PUBLIC
OxMetalClaw OxMetalClaw
$<$<BOOL:OX_USE_STDLIB>:OxOrganicClaw> $<$<BOOL:${OX_USE_STDLIB}>:OxOrganicClaw>
) )
if(OX_RUN_TESTS) if(OX_RUN_TESTS)