-
Notifications
You must be signed in to change notification settings - Fork 90
Some build fixes for msvc / cmake w/ vcpkg deps #441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
felakuti4life
wants to merge
6
commits into
fte-team:master
Choose a base branch
from
felakuti4life:ethan/windows-build-fixes
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
18eca6e
Some fixes for windows builds:
felakuti4life c74867a
Changing the generated search to be a vcpkg
felakuti4life e3ea7d7
Update building readme for msvc build w/ cmake and
felakuti4life fc2cd98
CMake wants these directories to exist before using them.
felakuti4life 3936be2
I had no idea you actually needed this
felakuti4life b4a1400
hold on. we want to generate this.
felakuti4life File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,88 @@ | ||
| { | ||
| "version": 6, | ||
| "cmakeMinimumRequired": { | ||
| "major": 3, | ||
| "minor": 21, | ||
| "patch": 0 | ||
| }, | ||
| "configurePresets": [ | ||
| { | ||
| "name": "windows-vs2026-min", | ||
| "displayName": "Windows VS2026 Minimal (fteqw-sv)", | ||
| "generator": "Visual Studio 18 2026", | ||
| "architecture": { | ||
| "value": "x64", | ||
| "strategy": "set" | ||
| }, | ||
| "binaryDir": "${sourceDir}/build-vs2026-min", | ||
| "cacheVariables": { | ||
| "CMAKE_INSTALL_PREFIX": "${sourceDir}/local-install", | ||
| "FTE_ENGINE": "OFF", | ||
| "FTE_ENGINE_SERVER_ONLY": "ON", | ||
| "FTE_ENGINE_CLIENT_ONLY": "OFF", | ||
| "FTE_TOOL_QCC": "OFF", | ||
| "FTE_TOOL_QCCGUI": "OFF", | ||
| "FTE_MENU_SYS": "OFF", | ||
| "FTE_CSADDON": "OFF", | ||
| "FTE_TOOL_IQM": "OFF", | ||
| "FTE_TOOL_IMAGE": "OFF", | ||
| "FTE_TOOL_QTV": "OFF", | ||
| "FTE_TOOL_HTTPSV": "OFF", | ||
| "FTE_TOOL_MASTER": "OFF", | ||
| "FTE_PLUG_QUAKE3": "OFF", | ||
| "FTE_PLUG_COD": "OFF", | ||
| "FTE_PLUG_BULLET": "OFF", | ||
| "FTE_PLUG_ODE": "OFF", | ||
| "FTE_PLUG_QI": "OFF", | ||
| "FTE_PLUG_EZHUD": "OFF", | ||
| "FTE_PLUG_IRC": "OFF", | ||
| "FTE_PLUG_HL2": "OFF", | ||
| "FTE_PLUG_MODELS": "OFF", | ||
| "FTE_PLUG_FFMPEG": "OFF", | ||
| "FTE_PLUG_OPENXR": "OFF", | ||
| "FTE_PLUG_CEF": "OFF", | ||
| "FTE_PLUG_XMPP": "OFF" | ||
| } | ||
| }, | ||
| { | ||
| "name": "windows-vs2026-full-vcpkg", | ||
| "displayName": "Windows VS2026 Full (vcpkg)", | ||
| "generator": "Visual Studio 18 2026", | ||
| "architecture": { | ||
| "value": "x64", | ||
| "strategy": "set" | ||
| }, | ||
| "binaryDir": "${sourceDir}/build-vs2026-full-vcpkg", | ||
| "cacheVariables": { | ||
| "CMAKE_INSTALL_PREFIX": "${sourceDir}/local-install", | ||
| "CMAKE_TOOLCHAIN_FILE": "${sourceDir}/../vcpkg/scripts/buildsystems/vcpkg.cmake", | ||
| "VCPKG_TARGET_TRIPLET": "x64-windows" | ||
| }, | ||
| "environment": { | ||
| "PATH": "${sourceDir}/../vcpkg/installed/x64-windows/tools/gettext/bin;$penv{PATH}" | ||
| } | ||
| } | ||
| ], | ||
| "buildPresets": [ | ||
| { | ||
| "name": "windows-vs2026-min-fteqw-sv", | ||
| "displayName": "Build fteqw-sv (Release)", | ||
| "configurePreset": "windows-vs2026-min", | ||
| "configuration": "Release", | ||
| "targets": [ | ||
| "fteqw-sv" | ||
| ], | ||
| "jobs": 4 | ||
| }, | ||
| { | ||
| "name": "windows-vs2026-full-allbuild", | ||
| "displayName": "Build ALL_BUILD (Release)", | ||
| "configurePreset": "windows-vs2026-full-vcpkg", | ||
| "configuration": "Release", | ||
| "targets": [ | ||
| "ALL_BUILD" | ||
| ], | ||
| "jobs": 4 | ||
| } | ||
| ] | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.