-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-updated sfun to v5.1.0; -updated fcgi_responder to v1.7.0; -updated whaleroute to v3.1.0; -updated hot_teacup to v3.3.0; -added CMakePresets.json; -set version to 0.6.0;
- Loading branch information
1 parent
c6ab5f0
commit 7f72a3d
Showing
5 changed files
with
165 additions
and
46 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
{ | ||
"version": 6, | ||
"configurePresets": [ | ||
{ | ||
"name": "base-linux", | ||
"hidden": true, | ||
"displayName": "linux base preset", | ||
"generator": "Ninja", | ||
"binaryDir": "build-${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_EXE_LINKER_FLAGS": "-fuse-ld=mold", | ||
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache", | ||
"CPM_SOURCE_CACHE": "cpm_cache" | ||
} | ||
}, | ||
{ | ||
"name": "clang-base", | ||
"hidden": true, | ||
"displayName": "clang base preset", | ||
"inherits": "base-linux", | ||
"cacheVariables": { | ||
"CMAKE_CXX_COMPILER": "clang++", | ||
"CMAKE_C_COMPILER": "clang", | ||
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wpedantic -Werror -Wcast-align -Wnon-virtual-dtor -Woverloaded-virtual -Wunused" | ||
} | ||
}, | ||
{ | ||
"name": "clang-debug", | ||
"displayName": "clang (Debug)", | ||
"inherits": "clang-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "clang-release", | ||
"displayName": "clang (Release)", | ||
"inherits": "clang-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-base", | ||
"hidden": true, | ||
"displayName": "gcc base preset", | ||
"inherits": "base-linux", | ||
"cacheVariables": { | ||
"CMAKE_CXX_COMPILER": "g++", | ||
"CMAKE_C_COMPILER": "gcc", | ||
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wpedantic -Werror -Wcast-align -Wnon-virtual-dtor -Woverloaded-virtual -Wunused" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-debug", | ||
"displayName": "gcc (Debug)", | ||
"inherits": "gcc-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "gcc-release", | ||
"displayName": "gcc (Release)", | ||
"inherits": "gcc-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "base-windows", | ||
"displayName": "windows base preset", | ||
"hidden": true, | ||
"generator": "Ninja", | ||
"binaryDir": "build-${presetName}", | ||
"architecture": { | ||
"value": "x64", | ||
"strategy": "external" | ||
}, | ||
"cacheVariables": { | ||
"CPM_SOURCE_CACHE": "cpm_cache", | ||
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache" | ||
}, | ||
"vendor": { | ||
"microsoft.com/VisualStudioSettings/CMake/1.0": { | ||
"hostOS": [ | ||
"Windows" | ||
] | ||
}, | ||
"jetbrains.com/clion": { | ||
"toolchain": "Visual Studio" | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "msvc-base", | ||
"hidden": true, | ||
"displayName": "msvc base preset", | ||
"inherits": "base-windows", | ||
"cacheVariables": { | ||
"CMAKE_CXX_COMPILER": "cl.exe", | ||
"CMAKE_C_COMPILER": "cl.exe", | ||
"CMAKE_CXX_FLAGS": "/EHsc /W4 /WX /wd4267" | ||
} | ||
}, | ||
{ | ||
"name": "msvc-debug", | ||
"displayName": "msvc (Debug)", | ||
"inherits": "msvc-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "msvc-release", | ||
"displayName": "msvc (Release)", | ||
"inherits": "msvc-base", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
} | ||
] | ||
} |
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,8 +1,10 @@ | ||
include(FetchContent) | ||
Set(FETCHCONTENT_QUIET FALSE) | ||
FetchContent_Declare(seal_lake | ||
GIT_REPOSITORY https://github.com/kamchatka-volcano/seal_lake.git | ||
GIT_TAG master | ||
set(SEAL_LAKE_VERSION v0.2.0) | ||
set(FETCHCONTENT_QUIET FALSE) | ||
FetchContent_Declare(seal_lake_${SEAL_LAKE_VERSION} | ||
SOURCE_DIR seal_lake_${SEAL_LAKE_VERSION} | ||
GIT_REPOSITORY "https://github.com/kamchatka-volcano/seal_lake.git" | ||
GIT_TAG ${SEAL_LAKE_VERSION} | ||
) | ||
FetchContent_MakeAvailable(seal_lake) | ||
include(${seal_lake_SOURCE_DIR}/seal_lake.cmake) | ||
FetchContent_MakeAvailable(seal_lake_${SEAL_LAKE_VERSION}) | ||
include(${seal_lake_${SEAL_LAKE_VERSION}_SOURCE_DIR}/seal_lake.cmake) |
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