aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorRachel Powers <508861+Ryex@users.noreply.github.com>2023-07-05 03:02:20 -0700
committerRachel Powers <508861+Ryex@users.noreply.github.com>2023-07-05 03:02:20 -0700
commit5fe9a7a6c352735801fbbea69f8d2a6cd3b884f4 (patch)
tree494f0d04099cd6edb6cfcda04605299ba01303a4 /CMakeLists.txt
parenta028894855f29c49d4bf8b0f745c66e1ea7dd4c6 (diff)
downloadPrismLauncher-5fe9a7a6c352735801fbbea69f8d2a6cd3b884f4.tar.gz
PrismLauncher-5fe9a7a6c352735801fbbea69f8d2a6cd3b884f4.tar.bz2
PrismLauncher-5fe9a7a6c352735801fbbea69f8d2a6cd3b884f4.zip
fix: extra } in CXX args
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bc988b4f..4f8befcc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -98,7 +98,7 @@ if (CMAKE_BUILD_TYPE STREQUAL "Debug" AND DEBUG_ADDRESS_SANITIZER)
else()
# AppleClang and Clang
message(STATUS "Address Sanitizer available on Clang")
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}} -fsanitize=address -O1 -fno-omit-frame-pointer")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -O1 -fno-omit-frame-pointer")
endif()
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
# GCC