mirror of
https://github.com/gwdevhub/gMod.git
synced 2026-07-21 01:49:31 +00:00
7dbbdc480e
* add gsl library to track memory allocations * rework creation to respect mod order slight slowdown but just to be safe * 1.6.1 * print info on timing * specify largeaddressaware (shouldn't matter since gw is linked with it, but can't hurt)
12 lines
215 B
CMake
12 lines
215 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
|
|
include(FetchContent)
|
|
|
|
FetchContent_Declare(GSL
|
|
GIT_REPOSITORY "https://github.com/microsoft/GSL"
|
|
GIT_TAG "v4.0.0"
|
|
GIT_SHALLOW ON
|
|
)
|
|
|
|
FetchContent_MakeAvailable(GSL)
|