From 856639df55d388754fc9549c18154238f459ea95 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Mon, 12 Aug 2019 21:16:20 +0200 Subject: [PATCH] fix cmake warning --- AutomatedTests/CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/AutomatedTests/CMakeLists.txt b/AutomatedTests/CMakeLists.txt index 4e9e4aa59c..c65d47296b 100644 --- a/AutomatedTests/CMakeLists.txt +++ b/AutomatedTests/CMakeLists.txt @@ -5,15 +5,15 @@ string(REPLACE "\n" ";" EMULATOR_LIST "${EMULATOR_LIST}") if(CMAKE_SYSTEM_NAME MATCHES "RetroCarbon") if("carbon" IN_LIST EMULATOR_LIST) - set(RETRO68_LAUNCH_METHOD carbon CACHE String "How to launch Mac applications (for automated testing)") + set(RETRO68_LAUNCH_METHOD carbon CACHE STRING "How to launch Mac applications (for automated testing)") else() - set(RETRO68_LAUNCH_METHOD NONE CACHE String "How to launch Mac applications (for automated testing)") + set(RETRO68_LAUNCH_METHOD NONE CACHE STRING "How to launch Mac applications (for automated testing)") endif() else() if("classic" IN_LIST EMULATOR_LIST) - set(RETRO68_LAUNCH_METHOD classic CACHE String "How to launch Mac applications (for automated testing)") + set(RETRO68_LAUNCH_METHOD classic CACHE STRING "How to launch Mac applications (for automated testing)") else() - set(RETRO68_LAUNCH_METHOD NONE CACHE String "How to launch Mac applications (for automated testing)") + set(RETRO68_LAUNCH_METHOD NONE CACHE STRING "How to launch Mac applications (for automated testing)") endif() endif() @@ -27,7 +27,7 @@ else() set(TESTCASE_PREFIX) endif() -set(RETRO68_TEST_CONFIG "--timeout=10" CACHE String "Options to pass to LaunchAPPL when running tests") +set(RETRO68_TEST_CONFIG "--timeout=10" CACHE STRING "Options to pass to LaunchAPPL when running tests") set(LAUNCH_METHOD_FLAG) if(RETRO68_LAUNCH_METHOD MATCHES "NONE")