From 674490730350f93d362f61c2b11e56943d40ffc0 Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Sat, 25 May 2019 12:03:39 -0500 Subject: [PATCH 1/3] rename msvc batch script Since it is designed for MSVC and there are other compiler support on Windows platform. --- gen-wins-project.bat => gen-msvc-project.bat | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename gen-wins-project.bat => gen-msvc-project.bat (100%) diff --git a/gen-wins-project.bat b/gen-msvc-project.bat similarity index 100% rename from gen-wins-project.bat rename to gen-msvc-project.bat From f2318c83c1499da3b6d069e951a88660d3468e93 Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Sat, 25 May 2019 12:07:17 -0500 Subject: [PATCH 2/3] fix "git submodule update" for any submodules may not been checked out --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c5006198..271c08a6c 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Please note the `--recurse-submodules` parameter. This is required to fetch sub- Without this, Cxbx-Reloaded will fail to build. If Cxbx-Reloaded was previously checked out without the submodules, they can be updated/fetched with the following command: -`git submodule update --recurse-submodules` +`git submodule update --init --recursive` ### Compiling Please note that Debug builds are significantly slower, but may help diagnose a problematic title. From 0f85436b95a9c4f0266eec08aba0febd6d489ff7 Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Sat, 25 May 2019 13:23:26 -0500 Subject: [PATCH 3/3] update note for VS 16.1 2019 has CMake 3.14 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 271c08a6c..d0f7e7d4d 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ Please note that Debug builds are significantly slower, but may help diagnose a 2. `cmake .. -G "Visual Studio 15 2017" -A Win32` - Create generated files for Visual Studio 2017. * Or use "Visual Studio 16 2019" for Visual Studio 2019. * **REMARK:** CMake 1.14 or later is the requirement to support Visual Studio 2019 generator. - * Last check: Visual Studio 2019, 16.0.3, currently has CMake 1.13. + * Visual Studio **16.1** 2019 or later has CMake 1.14 bundled. 4. Open `Cxbx-Reloaded.sln` from build-x86 directory, select your configuration (Release or Debug), then hit Build. ## Linux / macOS