From f07afa2a174baad237bafa5ddca6fb1bd27246bb Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 22 Feb 2021 22:00:58 -0600 Subject: [PATCH] [ox] Fix OX_USE_STDLIB check to work correctly on Windows (synced from a2aa9c8f821aa220478c50b6260a85b6ffe4d327) --- src/ox/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ox/CMakeLists.txt b/src/ox/CMakeLists.txt index bd230c729..c81649718 100644 --- a/src/ox/CMakeLists.txt +++ b/src/ox/CMakeLists.txt @@ -1,4 +1,4 @@ -if(${OX_USE_STDLIB}) +if(OX_USE_STDLIB) add_subdirectory(clargs) add_subdirectory(claw) add_subdirectory(oc)