Skip to content
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

feat: vcpkg manifest implementation #28

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ vcproj/Installer/Beta Release/
vcproj/Installer/Debug/
vcproj/Installer/Release/
.vscode/
.vs/

# Xcode
xcuserdata
Expand All @@ -56,4 +57,5 @@ xcuserdata
cmake-build-debug/

# Notepad++
*.bak
*.bak
/vcpkg_installed/x64-windows
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,14 @@ Download

You can find official releases at this repository [releases page](https://github.com/OTAcademy/RME/releases).

Compiling
Compiling using automatic libs installation with vcpkg manifest
=========
required only vcpkg setup: [https://github.com/microsoft/vcpkg](https://github.com/microsoft/vcpkg)

Compiling using manual libs installation
=========
required vcpkg setup: [https://github.com/microsoft/vcpkg](https://github.com/microsoft/vcpkg)

Required libraries:
* wxWidgets >= 3.0
* Boost >= 1.55.0
Expand Down
18 changes: 18 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"dependencies": [
"wxwidgets",
"freeglut",
"asio",
"nlohmann-json",
"fmt",
{
"name": "libiconv",
"platform": "osx"
},
"libarchive",
"boost-spirit",
"boost-asio"
],
"builtin-baseline": "215a2535590f1f63788ac9bd2ed58ad15e6afdff"
}
Binary file not shown.
Binary file removed vcproj/.vs/Editor/v17/fileList.bin
Binary file not shown.
3 changes: 3 additions & 0 deletions vcproj/Project/Editor.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetName>$(ProjectName)_x64</TargetName>
</PropertyGroup>
<PropertyGroup Label="Vcpkg">
<VcpkgEnableManifest>true</VcpkgEnableManifest>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
Expand Down