2017-01-27 08:58:21 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
|
|
add_definitions(-DNOMINMAX)
|
|
|
|
add_definitions(-DUNICODE)
|
|
|
|
add_definitions(-D_UNICODE)
|
|
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
|
|
|
add_definitions(-D_WIN32_WINNT=0x0602)
|
2017-02-11 00:28:37 +00:00
|
|
|
add_definitions(-D_SCL_SECURE_NO_WARNINGS)
|
2017-01-27 08:58:21 +00:00
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
2019-05-08 22:18:14 +00:00
|
|
|
add_definitions(-D_CRT_NONSTDC_NO_WARNINGS)
|
2017-01-27 08:58:21 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-04 21:54:25 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
2017-05-26 21:01:41 +00:00
|
|
|
|
2019-05-08 21:57:47 +00:00
|
|
|
if (MSVC)
|
|
|
|
# Set warning level to 4
|
|
|
|
add_compile_options(/W4)
|
|
|
|
|
|
|
|
# Disable some warnings
|
|
|
|
add_compile_options(
|
|
|
|
/wd4201 # nonstandard extension used : nameless struct/union
|
|
|
|
/wd4127 # conditional expression is constant
|
|
|
|
/wd4100 # 'identifier' : unreferenced formal parameter
|
|
|
|
/wd4200 # InputCommon fix temp.
|
|
|
|
/wd4244 # 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
/wd4121 # 'symbol' : alignment of a member was sensitive to packing
|
|
|
|
/wd4324 # Padding was added at the end of a structure because you specified a __declspec(align) value.
|
|
|
|
/wd4714 # function 'function' marked as __forceinline not inlined
|
|
|
|
/wd4351 # new behavior: elements of array 'array' will be default initialized
|
|
|
|
# TODO: Enable this warning once possible
|
|
|
|
/wd4245 # conversion from 'type1' to 'type2', signed/unsigned mismatch
|
|
|
|
# Currently jits use some annoying code patterns which makes this common
|
|
|
|
)
|
|
|
|
|
|
|
|
# Additional warnings
|
|
|
|
add_compile_options(
|
|
|
|
/w44263 # Non-virtual member function hides base class virtual function
|
|
|
|
/w44265 # Class has virtual functions, but destructor is not virtual
|
|
|
|
)
|
|
|
|
|
|
|
|
# Treat all warnings as errors
|
|
|
|
add_compile_options(/WX)
|
|
|
|
|
2019-05-08 22:18:14 +00:00
|
|
|
# All files are encoded as UTF-8
|
|
|
|
add_compile_options(/utf-8)
|
|
|
|
|
2019-05-15 17:28:04 +00:00
|
|
|
# Use PCH
|
|
|
|
add_subdirectory(PCH)
|
|
|
|
add_definitions(/I${PCH_DIRECTORY})
|
|
|
|
add_definitions(/Yu${PCH_PATH})
|
2019-05-08 21:57:47 +00:00
|
|
|
endif()
|
|
|
|
|
2017-01-20 16:44:23 +00:00
|
|
|
# These aren't actually needed for C11/C++11
|
|
|
|
# but some dependencies require them (LLVM, libav).
|
|
|
|
add_definitions(-D__STDC_LIMIT_MACROS)
|
|
|
|
add_definitions(-D__STDC_CONSTANT_MACROS)
|
|
|
|
|
2010-11-01 15:47:02 +00:00
|
|
|
add_subdirectory(Core)
|
2016-01-20 16:32:53 +00:00
|
|
|
if (ANDROID)
|
2017-03-01 12:43:43 +00:00
|
|
|
add_subdirectory(Android/jni)
|
2016-01-20 16:32:53 +00:00
|
|
|
endif()
|
2018-12-08 22:06:23 +00:00
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(UnitTests)
|
|
|
|
endif()
|
2011-07-18 01:47:55 +00:00
|
|
|
|
|
|
|
if (DSPTOOL)
|
2017-03-01 12:43:43 +00:00
|
|
|
add_subdirectory(DSPTool)
|
2011-07-18 01:47:55 +00:00
|
|
|
endif()
|
|
|
|
|
2016-09-11 22:25:45 +00:00
|
|
|
# TODO: Add DSPSpy. Preferably make it option() and cpack component
|