From 88e1cb14b7ccfa3b386810b9c67986ef7b9186fb Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Mon, 6 Feb 2023 21:15:40 +0100 Subject: [PATCH] add Visual Studio project running nmake --- .gitignore | 2 + .../pEpEngineSequoiaBackendProject.vcxproj | 63 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 build-win64/pEpEngineSequoiaBackendProject.vcxproj diff --git a/.gitignore b/.gitignore index 513f97b..29e0519 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ *~ /target /local.conf +pEpEngineSequoiaBackendProject.vcxproj.user +x64 diff --git a/build-win64/pEpEngineSequoiaBackendProject.vcxproj b/build-win64/pEpEngineSequoiaBackendProject.vcxproj new file mode 100644 index 0000000..eb4c99c --- /dev/null +++ b/build-win64/pEpEngineSequoiaBackendProject.vcxproj @@ -0,0 +1,63 @@ + + + + + Debug + x64 + + + Release + x64 + + + + + + + 17.0 + {C0052FAC-9409-4CE4-B4FF-F98EDCDB244B} + Win32Proj + + + + Makefile + true + v143 + + + Makefile + false + v143 + + + + + + + + + + + + + + + cd .. && nmake /f NMakefile /e DEBUG=debug + $(ProjectPath)..\target\debug\pep_engine_sequoia_backend.dll + cd .. && nmake /f NMakefile clean + _DEBUG;$(NMakePreprocessorDefinitions) + cd .. && nmake /f NMakefile /e DEBUG=debug clean build + + + cd .. && nmake /f NMakefile + $(ProjectDir)..\target\release\pep_engine_sequoia_backend.dll + cd .. && nmake /f NMakefile clean + NDEBUG;$(NMakePreprocessorDefinitions) + cd .. && nmake /f NMakefile clean build + + + + + + + \ No newline at end of file -- GitLab