ETEngine icon indicating copy to clipboard operation
ETEngine copied to clipboard

Can someone explain how to build with Visual Studio 2022 ?

Open Infinitusvoid opened this issue 2 years ago • 2 comments

Changing this :

git clone https://github.com/Illation/ETEngine
cd ETEngine/Projects/Demo
cmake -G "Visual Studio 15 2017 Win64" -S . -B build
cmake --build build --target all --config Develop
cmake --build build --target install
cmake --build build --target cook-installed-resources-EtEngineDemo

Into this :

git clone https://github.com/Illation/ETEngine
cd ETEngine/Projects/Demo
cmake -G "Visual Studio 17.4.3 2022 Win64" -S . -B build
cmake --build build --target all --config Develop
cmake --build build --target install
cmake --build build --target cook-installed-resources-EtEngineDemo

Does not seems to be enought

Infinitusvoid avatar Apr 14 '23 11:04 Infinitusvoid

I doubt it will currently compile on VS 2022 due to some dependencies, but for 2019 at least the commandline is cmake -G "Visual Studio 16 2019" -A x64 -S . -B Build

So try replacing Win64 with -A x64

Illation avatar Sep 20 '23 12:09 Illation

Thanks @Illation

Infinitusvoid avatar Sep 23 '23 18:09 Infinitusvoid