-
Notifications
You must be signed in to change notification settings - Fork 442
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
Correct compilation instructions for *nix #2026
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,13 +54,10 @@ Compilation | |
Follow the instructions at the [megasource][megasource] repository page. | ||
|
||
### *nix | ||
Run `platform/unix/automagic` from the repository root, then run ./configure and make. | ||
First pick a directory to store generated files to, say `build/` and then: | ||
|
||
$ platform/unix/automagic | ||
$ ./configure | ||
$ make | ||
|
||
When using a source release, automagic has already been run, and the first step can be skipped. | ||
$ cmake -B build -S. --install-prefix $PWD/prefix # this will create the directory `build/` | ||
$ cmake --build build --target install # this will put the files in `prefix/`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, you're right. The autotools build system used to allow in-tree build. With the transition to CMake, we explicitly forbid in-tree build. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I see in CMakeLists.txt, you can't run |
||
|
||
### macOS | ||
Download or clone [this repository][dependencies-apple] and copy, move, or symlink the `macOS/Frameworks` subfolder into love's `platform/xcode/macosx` folder. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.