mirror of
https://github.com/ModOrganizer2/modorganizer-installer_omod.git
synced 2026-07-27 14:07:51 -07:00
10 lines
319 B
CMake
10 lines
319 B
CMake
# CMake 3.18 due to https://gitlab.kitware.com/cmake/cmake/-/issues/20764
|
|
cmake_minimum_required(VERSION 3.18)
|
|
|
|
# set globally as Nuget gets confused about ZERO_CHECK, ALL_BUILD and INSTALL otherwise
|
|
set(CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION "v4.8")
|
|
|
|
project(installer_omod LANGUAGES CXX CSharp)
|
|
|
|
add_subdirectory(src)
|