From 60714d30099aa7d63fb79c04b754e4c58a7b0732 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 22 Feb 2021 22:19:16 -0600 Subject: [PATCH] [ox/oc] Cleanup ON check to work as a boolean check --- deps/ox/src/ox/oc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/ox/src/ox/oc/CMakeLists.txt b/deps/ox/src/ox/oc/CMakeLists.txt index 653a5a20..f7dd78f7 100644 --- a/deps/ox/src/ox/oc/CMakeLists.txt +++ b/deps/ox/src/ox/oc/CMakeLists.txt @@ -37,6 +37,6 @@ install(TARGETS OxOrganicClaw ARCHIVE DESTINATION lib/ox ) -if(OX_RUN_TESTS STREQUAL "ON") +if(OX_RUN_TESTS) add_subdirectory(test) endif()