2019-07-24 22:19:43 +02:00
|
|
|
cmake_minimum_required(VERSION 3.8)
|
2019-06-29 15:56:13 +02:00
|
|
|
project(Lightswitch VERSION 1 LANGUAGES CXX)
|
2019-06-29 15:35:24 +02:00
|
|
|
set_property(GLOBAL PROPERTY CMAKE_CXX_STANDARD 17 PROPERTY CMAKE_CXX_STANDARD_REQUIRED TRUE)
|
|
|
|
|
2019-07-24 22:19:43 +02:00
|
|
|
set(BUILD_TESTS FALSE)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
|
|
|
|
add_subdirectory("libraries/tinyxml2")
|
|
|
|
add_subdirectory("libraries/fmt")
|
|
|
|
|
2019-06-29 15:53:37 +02:00
|
|
|
set(source_DIR ${CMAKE_SOURCE_DIR}/src/main/cpp)
|
2019-06-29 18:13:36 +02:00
|
|
|
|
2019-07-02 22:00:57 +02:00
|
|
|
include_directories(${source_DIR})
|
2019-06-29 18:13:36 +02:00
|
|
|
|
2019-06-30 15:26:57 +02:00
|
|
|
add_library(lightswitch SHARED
|
|
|
|
${source_DIR}/lightswitch.cpp
|
2019-07-24 22:19:43 +02:00
|
|
|
${source_DIR}/switch/os/os.cpp
|
|
|
|
${source_DIR}/switch/os/ipc.cpp
|
|
|
|
${source_DIR}/switch/os/kernel.cpp
|
|
|
|
${source_DIR}/switch/os/svc.cpp
|
|
|
|
${source_DIR}/switch/hw/cpu.cpp
|
|
|
|
${source_DIR}/switch/hw/memory.cpp
|
|
|
|
${source_DIR}/switch/common.cpp
|
|
|
|
${source_DIR}/switch/loader/nro.cpp
|
|
|
|
)
|
2019-08-17 01:04:37 +02:00
|
|
|
target_link_libraries(lightswitch fmt tinyxml2)
|
2019-07-24 22:19:43 +02:00
|
|
|
target_compile_options(lightswitch PRIVATE -Wno-c++17-extensions)
|