Skip to content
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: 2 additions & 2 deletions create_project.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ GOTO END

:TWO
ECHO Creating VS2019 Android Project
external\udCore\bin\premake-bin\premake5.exe vs2019 --os=android
external\udCore\bin\premake-bin\premake5.exe vs2019 --os=android %*
GOTO END

:ONE
ECHO Creating VS2019 Project...
external\udCore\bin\premake-bin\premake5.exe vs2019
external\udCore\bin\premake-bin\premake5.exe vs2019 %*
GOTO END

:END
2 changes: 1 addition & 1 deletion premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ solution "udSDKSamples"
platforms { "x64" }
end

cppdialect "C++14"
cppdialect "C++17"
pic "On"
startproject "cSample"

Expand Down