Files
lifting-bits-remill/cmake/settings.cmake
Eric Kilmer 2eaf52ca72 Remove old cxx common logic (#500)
* Remove old cxx-common references

* Test on this branch first

* Revert "Test on this branch first"

This reverts commit 888b584f8a.
2021-04-02 21:21:51 -04:00

55 lines
1.1 KiB
CMake

# This is only executed once; use a macro (and not a function) so that
# everything defined here does not end up in a separate namespace
macro(main)
# default build type
if(WIN32)
set(CMAKE_BUILD_TYPE Release)
else()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
endif()
endif()
# overwrite the default install prefix
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
if(DEFINED WIN32)
set(CMAKE_INSTALL_PREFIX "C:/")
else()
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
endif()
message(STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}")
# generate a compile commands JSON file.
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
#
# compiler and linker flags
#
# Globally set the required C++ standard
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_EXTENSIONS OFF)
if(UNIX)
if(APPLE)
set(PLATFORM_NAME "macos")
else()
set(PLATFORM_NAME "linux")
endif()
elseif(WIN32)
set(PLATFORM_NAME "windows")
else()
message("This platform is not officially supported")
endif()
set(SETTINGS_CMAKE_ true)
endmacro()
if(NOT DEFINED SETTINGS_CMAKE_)
main()
endif()