From 338b80db5c7f16bfe90d17a3178bca7c985009dd Mon Sep 17 00:00:00 2001 From: Justin K -W10 Date: Sun, 4 Feb 2018 18:33:29 -0500 Subject: [PATCH 1/2] Added notes about the new feature --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 78994f7..173834b 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,19 @@ Flymake's typical behaviour which builds only the file for the buffer in question. CMake doesn't provide a way to build one file at a time (or at least we don't know of a way) so we must build everything. +# Changing the architecture of the build in Windows +By default cmake builds for 32bit architecture on windows. If you are +on windows and you want to set the default architecture of your builds +to something else that can be done like this + +`(setq cmake-project-architecture "Win64") ;; Sets the architecture to 64bit` +`(setq cmake-project-architecture "ARM") ;; Sets the architecture for arm` + +# Other Customizations # + +You can also set the build directory to other directories like so +`(setq cmake-project-default-build-dir-name "build\/")` + [1]: http://www.cmake.org/CMakeDocs/cmake-mode.el [2]: http://marmalade-repo.org/ From c1b37a0ffe10e927bcb75dc8aa4ffe57163a061e Mon Sep 17 00:00:00 2001 From: Justin K -W10 Date: Sun, 4 Feb 2018 18:35:30 -0500 Subject: [PATCH 2/2] Cleanup --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 173834b..ac87770 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ on windows and you want to set the default architecture of your builds to something else that can be done like this `(setq cmake-project-architecture "Win64") ;; Sets the architecture to 64bit` + `(setq cmake-project-architecture "ARM") ;; Sets the architecture for arm` # Other Customizations #