diff options
| author | HampusM <hampus@hampusmat.com> | 2022-04-29 20:11:47 +0200 | 
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2022-04-29 20:11:47 +0200 | 
| commit | b8b238c314f77ccf5db1c385b9f526ccc30aed23 (patch) | |
| tree | 318851c3f1cd7178271f2ed5fb39b5c74b66c110 | |
| parent | 609e5933a5aee9faf3ede9898840c6745c469b26 (diff) | |
build: remove set stdlib to libc++v0.1.1
| -rw-r--r-- | CMakeLists.txt | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 673c25f..49370d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,10 +31,10 @@ target_compile_options(  	-Wsign-conversion -Wsign-promo  	-Wstrict-overflow=5 -Wswitch-default  	-Wundef -Werror -	-pedantic -fsanitize=address -fno-exceptions -stdlib=libc++ +	-pedantic -fsanitize=address -fno-exceptions  ) -target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address -stdlib=libc++) +target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address)  target_include_directories(${PROJECT_NAME}    PRIVATE  | 
