Skip to content

Commit

Permalink
Reduced to one cmake option
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Hewett committed Aug 30, 2023
1 parent 74d6bfc commit 8c6dfc0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ option(CLANG_TIDY "Perform linting with clang-tidy" OFF)
option(SANITIZERS "Enable sanitizers" OFF)

# Default values for the namespaces are adequate for most uses.
set(MLS_CPP_NAMESPACE "mls" CACHE STRING "top-level namespace for cpp")
set(MLS_EXPORT_NAMESPACE "MLSPP" CACHE STRING "namespace for cmake export")
set(MLS_NAMESPACE_SUFFIX "" CACHE STRING "Namespace Suffix for CPP and CMake Export")
set(MLS_CPP_NAMESPACE "mls${MLS_NAMESPACE_SUFFIX}" CACHE STRING "Top-level Namespace for CPP")
set(MLS_EXPORT_NAMESPACE "MLSPP${MLS_NAMESPACE_SUFFIX}" CACHE STRING "Namespace for CMake Export")

###
### Global Config
Expand Down

0 comments on commit 8c6dfc0

Please sign in to comment.