forked from TanninOne/usvfs
-
Notifications
You must be signed in to change notification settings - Fork 26
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
24 changed files
with
120 additions
and
79 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,117 @@ | ||
{ | ||
"configurePresets": [ | ||
{ | ||
"cacheVariables": { | ||
"BUILD_TESTING": { | ||
"type": "BOOL", | ||
"value": "ON" | ||
} | ||
}, | ||
"errors": { | ||
"deprecated": true | ||
}, | ||
"hidden": true, | ||
"name": "cmake-dev", | ||
"warnings": { | ||
"deprecated": true, | ||
"dev": true | ||
} | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"VCPKG_MANIFEST_NO_DEFAULT_FEATURES": { | ||
"type": "BOOL", | ||
"value": "ON" | ||
}, | ||
"VCPKG_OVERLAY_PORTS": { | ||
"type": "STRING", | ||
"value": "${sourceDir}/cmake/ports" | ||
} | ||
}, | ||
"toolchainFile": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", | ||
"hidden": true, | ||
"name": "vcpkg" | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"VCPKG_MANIFEST_FEATURES": { | ||
"type": "STRING", | ||
"value": "testing" | ||
} | ||
}, | ||
"hidden": true, | ||
"inherits": [ | ||
"vcpkg" | ||
], | ||
"name": "vcpkg-dev" | ||
}, | ||
{ | ||
"binaryDir": "${sourceDir}/cbuild64", | ||
"architecture": { | ||
"strategy": "set", | ||
"value": "x64" | ||
}, | ||
"cacheVariables": { | ||
"VCPKG_TARGET_TRIPLET": { | ||
"type": "STRING", | ||
"value": "x64-windows-static-md" | ||
} | ||
}, | ||
"hidden": true, | ||
"name": "windows-x64" | ||
}, | ||
{ | ||
"binaryDir": "${sourceDir}/cbuild32", | ||
"architecture": { | ||
"strategy": "set", | ||
"value": "Win32" | ||
}, | ||
"cacheVariables": { | ||
"VCPKG_TARGET_TRIPLET": { | ||
"type": "STRING", | ||
"value": "x86-windows-static-md" | ||
} | ||
}, | ||
"hidden": true, | ||
"name": "windows-x86" | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4" | ||
}, | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": [ | ||
"cmake-dev", | ||
"vcpkg-dev" | ||
], | ||
"hidden": true, | ||
"name": "vs2022-windows", | ||
"toolset": "v143" | ||
}, | ||
{ | ||
"inherits": [ | ||
"vs2022-windows", | ||
"windows-x64" | ||
], | ||
"name": "vs2022-windows-x64" | ||
}, | ||
{ | ||
"inherits": [ | ||
"vs2022-windows", | ||
"windows-x86" | ||
], | ||
"name": "vs2022-windows-x86" | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "vs2022-windows-x64", | ||
"configurePreset": "vs2022-windows-x64" | ||
}, | ||
{ | ||
"name": "vs2022-windows-x86", | ||
"configurePreset": "vs2022-windows-x86" | ||
} | ||
], | ||
"version": 3 | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
add_library(usvfs_helper STATIC inject.h inject.cpp) | ||
usvfs_configure_target(usvfs_helper) | ||
target_link_libraries(usvfs_helper PUBLIC shared PRIVATE tinjectlib) | ||
target_include_directories(usvfs_helper PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) | ||
set_target_properties(usvfs_helper PROPERTIES FOLDER injection) |
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
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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