[ox/claw] Fix CMake generator expression OX_USE_STDLIB switch

(synced from 51f3c01c4e)
This commit is contained in:
2021-10-28 01:49:20 -05:00
parent 2e3f87c339
commit e46d1e6dd2
+2 -1
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)