Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hi, I added some notes to the readme about my last pull couple of PRs #15

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,20 @@ 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/
Expand Down