From 21eb9ecd50ac36bc1a97b8755710b14f868e8542 Mon Sep 17 00:00:00 2001 From: acpaquette <acpaquette@usgs.gov> Date: Thu, 9 Apr 2020 07:23:18 -0700 Subject: [PATCH] Change name of ALE build tests variable to prevent future clashs (#346) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81498d6..f145a39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,8 +60,8 @@ target_link_libraries(ale nlohmann_json::nlohmann_json) # Optional build tests -option (BUILD_TESTS "Build tests" ON) -if(BUILD_TESTS) +option (ALE_BUILD_TESTS "Build tests" ON) +if(ALE_BUILD_TESTS) include(cmake/gtest.cmake) include(GoogleTest) include(CTest) -- GitLab