mirror of https://github.com/Kylart/KawAnime.git
24 lines
660 B
CMake
24 lines
660 B
CMake
cmake_minimum_required(VERSION 3.12.0 FATAL_ERROR)
|
|
|
|
# Name of the project (will be the name of the plugin)
|
|
project(kawabinds)
|
|
|
|
set(CMAKE_CXX_STANDARD 14)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
# Windows things...
|
|
if (MSVC)
|
|
if (MSVC_VERSION GREATER_EQUAL "1900")
|
|
include(CheckCXXCompilerFlag)
|
|
CHECK_CXX_COMPILER_FLAG("/std:c++14" _cpp_14_flag_supported)
|
|
if (_cpp_14_flag_supported)
|
|
add_compile_options("/std:c++14")
|
|
endif(_cpp_14_flag_supported)
|
|
endif(MSVC_VERSION GREATER_EQUAL "1900")
|
|
|
|
add_compile_definitions(WIN32_LEAN_AND_MEAN)
|
|
endif(MSVC)
|
|
|
|
add_subdirectory("name_parser")
|
|
add_subdirectory("torrent") |