kabufuda/CMakeLists.txt

30 lines
1.0 KiB
CMake
Raw Normal View History

2017-11-14 04:53:04 +00:00
cmake_minimum_required(VERSION 3.10 FATAL_ERROR) # because of c++17
2016-03-26 18:34:03 +00:00
project(kabufuda)
2017-11-13 06:18:30 +00:00
set(CMAKE_CXX_STANDARD 17)
2017-06-18 02:52:19 +00:00
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2016-03-26 04:26:51 +00:00
include_directories(include)
set(KABUFUDA_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "kabufuda include path" FORCE)
2016-03-26 04:26:51 +00:00
2016-06-30 19:40:35 +00:00
unset(PLAT_SRCS)
if(WIN32)
2018-02-06 09:34:01 +00:00
list(APPEND PLAT_SRCS lib/kabufuda/winsupport.cpp include/kabufuda/winsupport.hpp lib/kabufuda/AsyncIOWin32.cpp)
else()
list(APPEND PLAT_SRCS lib/kabufuda/AsyncIOPosix.cpp)
2016-06-30 19:40:35 +00:00
endif()
2016-03-26 18:34:03 +00:00
add_library(kabufuda STATIC
include/kabufuda/Constants.hpp
2018-02-06 09:34:01 +00: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
2016-06-30 19:40:35 +00:00
include/kabufuda/WideStringConvert.hpp lib/kabufuda/WideStringConvert.cpp
${PLAT_SRCS})
2016-03-26 04:26:51 +00:00
2016-06-30 09:53:13 +00:00
add_subdirectory(test)