[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
)
target_link_libraries(
OxClaw PUBLIC
OxMetalClaw
$<$<BOOL:OX_USE_STDLIB>:OxOrganicClaw>
$<$<BOOL:${OX_USE_STDLIB}>:OxOrganicClaw>
)
if(OX_RUN_TESTS)