This repository was archived by the owner on Aug 19, 2018. It is now read-only.
linux-build-cmake - #4
Open
kf6kjg wants to merge 1 commit into
Open
Conversation
This solves building on linux, Issue IslandzVW#3, as this OS doesn't append an extension to the filename.
|
In my experience all that was needed is: mkdir build |
Author
|
Along with a cp of the cfg sample file, yes, that's a viable alternative.
Thanks!
Though it does leave a mess of extraneous files in the output folder,
whereas this PR leaves the resulting bin folder with only those files
needed for execution, similar to Halcyon.
…On Mon, Feb 13, 2017 at 7:39 AM Mike Dickson ***@***.***> wrote:
In my experience all that was needed is:
mkdir build
cd build
cmake ..
make
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABGoaLlacKgKbOfVSQvSofjJxMu1JFB9ks5rcHk2gaJpZM4L-x33>
.
|
|
Right, the majority of cmake projects are not setup to do in-source builds. Those mess up source control a lot of the time. Typically, CMake projects are built the way Make suggests. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Moved the destination of the compilation into a subfolder named bin.
This solves building on linux, Issue #3, as this OS doesn't append an extension to the filename.