Skip to content

Commit

Permalink
Merge pull request #325 from NCAR/256-config-parser
Browse files Browse the repository at this point in the history
256 config parser
  • Loading branch information
dwfncar authored Oct 31, 2023
2 parents ff54209 + 0a70ed6 commit 456674a
Show file tree
Hide file tree
Showing 67 changed files with 811 additions and 702 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@ if(PROJECT_IS_TOP_LEVEL)
endif()

################################################################################

# on ubuntu with clang, an incorrect version of the c++ standard library was being linked
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux" AND "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
# If the compiler is Clang, use libc++
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
endif()
Loading

0 comments on commit 456674a

Please sign in to comment.