mirror of
https://github.com/ModOrganizer2/githubpp.git
synced 2026-07-27 14:04:49 -07:00
13 lines
286 B
CMake
13 lines
286 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(githubpp)
|
|
set(project_type lib)
|
|
set(enable_warnings OFF)
|
|
|
|
if(DEFINED DEPENDENCIES_DIR)
|
|
include(${DEPENDENCIES_DIR}/modorganizer_super/cmake_common/project.cmake)
|
|
else()
|
|
include(../cmake_common/project.cmake)
|
|
endif()
|
|
add_subdirectory(src)
|