forked from hampusborgos/rme
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
3,368 additions
and
2,531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,11 @@ build-release | |
CMakeLists.txt.user* | ||
|
||
# RME | ||
remeres | ||
rme | ||
rme.cfg | ||
data/user | ||
world | ||
|
||
# Visual Studio | ||
*.MAP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,140 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 22, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "windows-release", | ||
"displayName": "Windows - Release", | ||
"description": "Sets Ninja generator, compilers, build and install directory and set build type as release", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"type": "FILEPATH" | ||
}, | ||
"VCPKG_TARGET_TRIPLET": "x64-windows-static", | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"OPTIONS_ENABLE_SCCACHE": "ON" | ||
}, | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
}, | ||
"vendor": { | ||
"microsoft.com/VisualStudioSettings/CMake/1.0": { | ||
"hostOS": [ "Windows" ] | ||
} | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Windows" | ||
} | ||
}, | ||
{ | ||
"name": "linux-release", | ||
"displayName": "Linux - Release", | ||
"description": "Sets Ninja generator, compilers, build and install directory and set build type as release", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"type": "FILEPATH" | ||
}, | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"OPTIONS_ENABLE_CCACHE": "ON" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Linux" | ||
} | ||
}, | ||
{ | ||
"name": "windows-debug", | ||
"inherits": "windows-release", | ||
"displayName": "Windows - Debug", | ||
"description": "Build Debug Mode", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"DEBUG_LOG": "ON" | ||
}, | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
} | ||
}, | ||
{ | ||
"name": "linux-debug", | ||
"inherits": "linux-release", | ||
"displayName": "Linux - Debug Build", | ||
"description": "Build Debug Mode", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"DEBUG_LOG": "ON" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "linux-release", | ||
"configurePreset": "linux-release" | ||
}, | ||
{ | ||
"name": "linux-debug", | ||
"configurePreset": "linux-debug" | ||
}, | ||
{ | ||
"name": "windows-release", | ||
"configurePreset": "windows-release" | ||
}, | ||
{ | ||
"name": "windows-Xdebug", | ||
"configurePreset": "windows-debug" | ||
} | ||
] | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 22, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "windows-release", | ||
"displayName": "Windows - Release", | ||
"description": "Sets Ninja generator, compilers, build and install directory and set build type as release", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"type": "FILEPATH" | ||
}, | ||
"VCPKG_TARGET_TRIPLET": "x64-windows-static", | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"OPTIONS_ENABLE_SCCACHE": "ON" | ||
}, | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
}, | ||
"vendor": { | ||
"microsoft.com/VisualStudioSettings/CMake/1.0": { | ||
"hostOS": ["Windows"] | ||
} | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Windows" | ||
} | ||
}, | ||
{ | ||
"name": "linux-release", | ||
"displayName": "Linux - Release", | ||
"description": "Sets Ninja generator, compilers, build and install directory and set build type as release", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"type": "FILEPATH" | ||
}, | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"OPTIONS_ENABLE_CCACHE": "ON" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Linux" | ||
} | ||
}, | ||
{ | ||
"name": "macos-release", | ||
"displayName": "macOS - Release", | ||
"description": "Sets Ninja generator, compilers, build and install directory and set build type as release", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"type": "FILEPATH" | ||
}, | ||
"CMAKE_BUILD_TYPE": "Release", | ||
"OPTIONS_ENABLE_CCACHE": "ON" | ||
}, | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Darwin" | ||
} | ||
}, | ||
{ | ||
"name": "windows-debug", | ||
"inherits": "windows-release", | ||
"displayName": "Windows - Debug", | ||
"description": "Build Debug Mode", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"DEBUG_LOG": "ON" | ||
}, | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
} | ||
}, | ||
{ | ||
"name": "linux-debug", | ||
"inherits": "linux-release", | ||
"displayName": "Linux - Debug Build", | ||
"description": "Build Debug Mode", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"DEBUG_LOG": "ON" | ||
} | ||
}, | ||
{ | ||
"name": "macos-debug", | ||
"inherits": "macos-release", | ||
"displayName": "macOS - Debug Build", | ||
"description": "Build Debug Mode", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"DEBUG_LOG": "ON" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "linux-release", | ||
"configurePreset": "linux-release" | ||
}, | ||
{ | ||
"name": "linux-debug", | ||
"configurePreset": "linux-debug" | ||
}, | ||
{ | ||
"name": "windows-release", | ||
"configurePreset": "windows-release" | ||
}, | ||
{ | ||
"name": "windows-Xdebug", | ||
"configurePreset": "windows-debug" | ||
}, | ||
{ | ||
"name": "macos-release", | ||
"configurePreset": "macos-release" | ||
}, | ||
{ | ||
"name": "macos-debug", | ||
"configurePreset": "macos-debug" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.