Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
Signed-off-by: Vlad Gheorghiu <[email protected]>
  • Loading branch information
vsoftco committed Jun 10, 2024
1 parent 6dfb465 commit 9a98289
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
You may need to remove CMakeCache.txt.")
endif()

# Force clang to use libc++
if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
add_compile_options("-stdlib=libc++")
endif()
# # Force Clang to use libc++

# if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
# add_compile_options("-stdlib=libc++") endif()

# Windows issues with Microsoft Visual Studio
if(MSVC)
Expand Down Expand Up @@ -100,7 +100,7 @@ add_subdirectory(src/tools)
# Unit testing
add_subdirectory(${CMAKE_SOURCE_DIR}/unit_tests/ EXCLUDE_FROM_ALL SYSTEM)

# Enable all warnings for GNU gcc and Clang/AppleClang
# Enable all warnings for GCC and Clang/AppleClang
if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang" OR ${CMAKE_CXX_COMPILER_ID}
STREQUAL "GNU")
add_compile_options("-pedantic" "-Wall" "-Wextra" "-Weffc++")
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ platform-independent, supporting

- [CMake](https://cmake.org/)
- pp+17 compliant compiler, e.g.,
[gcc](https://gcc.gnu.org/),
[clang](https://clang.llvm.org),
[GCC](https://gcc.gnu.org/),
[Clang](https://clang.llvm.org),
[MSVC](https://visualstudio.microsoft.com/vs/)

- Optional, [GNU MP](https://gmplib.org/) library for building the grid synth
Expand Down

0 comments on commit 9a98289

Please sign in to comment.