kabufuda/CMakeLists.txt

66 lines
1.9 KiB
CMake
Raw Normal View History

2017-11-13 20:53:04 -08:00
cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # because of c++17
2016-03-26 11:34:03 -07:00
project(kabufuda)
2020-04-10 22:01:21 -07:00
if (NOT MSVC)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
endif()
2016-03-26 11:34:03 -07:00
add_library(kabufuda STATIC
include/kabufuda/Constants.hpp
2018-02-06 01:34:01 -08:00
include/kabufuda/AsyncIO.hpp
include/kabufuda/BlockAllocationTable.hpp lib/kabufuda/BlockAllocationTable.cpp
include/kabufuda/Card.hpp lib/kabufuda/Card.cpp
include/kabufuda/Directory.hpp lib/kabufuda/Directory.cpp
include/kabufuda/File.hpp lib/kabufuda/File.cpp
include/kabufuda/Util.hpp lib/kabufuda/Util.cpp
include/kabufuda/SRAM.hpp lib/kabufuda/SRAM.cpp
)
if(WIN32)
if (MSVC)
target_compile_options(kabufuda PRIVATE
# Enforce various standards compliant behavior.
2020-04-10 22:01:21 -07:00
$<$<COMPILE_LANGUAGE:CXX>:/permissive->
# Enable standard volatile semantics.
2020-04-10 22:01:21 -07:00
$<$<COMPILE_LANGUAGE:CXX>:/volatile:iso>
# Reports the proper value for the __cplusplus preprocessor macro.
2020-04-10 22:01:21 -07:00
$<$<COMPILE_LANGUAGE:CXX>:/Zc:__cplusplus>
2020-04-10 22:01:21 -07:00
# Use latest C++ standard.
$<$<COMPILE_LANGUAGE:CXX>:/std:c++latest>
)
2020-04-10 22:01:21 -07:00
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
# Flags for MSVC (not clang-cl)
target_compile_options(kabufuda PRIVATE
# Allow constexpr variables to have explicit external linkage.
$<$<COMPILE_LANGUAGE:CXX>:/Zc:externConstexpr>
# Assume that new throws exceptions, allowing better code generation.
$<$<COMPILE_LANGUAGE:CXX>:/Zc:throwingNew>
)
endif()
endif()
target_sources(kabufuda PRIVATE
lib/kabufuda/AsyncIOWin32.cpp
)
2022-08-03 15:11:08 -07:00
elseif(NX OR EMSCRIPTEN)
2020-10-20 21:45:02 -07:00
target_sources(kabufuda PRIVATE
lib/kabufuda/AsyncIONX.cpp
)
else()
target_sources(kabufuda PRIVATE
lib/kabufuda/AsyncIOPosix.cpp
)
2020-10-07 17:11:05 -07:00
if(NOT APPLE)
target_link_libraries(kabufuda PUBLIC rt)
endif()
endif()
2019-06-11 19:04:15 -07:00
target_include_directories(kabufuda PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
2016-03-25 21:26:51 -07:00
2016-06-30 02:53:13 -07:00
add_subdirectory(test)