aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* workflows: switch to ucrt runtime for msys2selsta2026-06-021-2/+2
|
* Makefile: set CMAKE_BUILD_TYPE to debug for debug targetselsta2022-04-301-1/+1
|
* Merge pull request #3680luigi11112022-01-241-3/+1
|\ | | | | | | f30570d Makefile: fix release-linux-armv8 (selsta)
| * Makefile: fix release-linux-armv8selsta2021-08-311-3/+1
| |
* | Makefile: don't hardcode x86_64 archselsta2021-11-101-4/+4
| |
* | Merge pull request #3364luigi11112021-11-091-0/+3
|\ \ | |/ |/| | | 66d29a4 Makefile: Add ppc64le target (Jeremy Rand)
| * Makefile: Add ppc64le targetJeremy Rand2021-03-211-0/+3
| |
* | Makefile: add CMAKE_BUILD_TYPE=Debug to debug buildselsta2021-04-221-1/+1
|/
* Makefile: support USE_SINGLE_BUILDDIR=OFF without git installedxiphon2021-01-141-5/+11
| | | | | # Conflicts: # Makefile
* Makefile: refactor USE_SINGLE_BUILDDIR=OFF builddir pathxiphon2020-11-151-7/+12
|
* Merge pull request #3199Alexander Blair2020-11-061-12/+12
|\ | | | | | | d79f8e8b Makefile: MANUAL_SUBMODULES support (OFF by default) (xiphon)
| * Makefile: MANUAL_SUBMODULES support (OFF by default)xiphon2020-10-301-12/+12
| |
* | Makefile: add 'release-linux-armv8' targetxiphon2020-10-141-0/+5
|/
* build: enable USE_SINGLE_BUILDDIR by default, OFF to disableselsta2020-09-261-1/+1
|
* docker: Windows static build (cross-compilation from Linux)xiphon2020-09-201-0/+5
|
* cmake: implement Linux 'release-static' build targetxiphon2020-06-211-0/+3
|
* cmake: workflows: implement 'release' Linux build target + CIxiphon2020-05-281-0/+3
|
* build: release-win64 supportxiphon2020-05-151-0/+2
|
* build: fix MSYS2 folder detectionxiphon2020-04-061-2/+2
|
* build: autodetect MSYS2 install path, support non-standard locationxiphon2019-12-301-2/+2
|
* build: support DEV_MODE env var to override default valuexiphon2019-12-191-7/+7
|
* cmake: fix MinGW static builds, add 'release-static-win64' targetxiphon2019-11-271-1/+4
|
* Add Apple supportTheCharlatan2019-11-271-0/+5
|
* Add support for msys/mingw32TheCharlatan2019-11-271-3/+24
|
* Migrate build system to cmakeTheCharlatan2019-11-271-0/+11
The content in this commit is not split in order to preserve working compilation. Once this is added to master, the old build script will no longer work and all existing build toolings will require changes. Monero's cmake directory's files need to be copied to this project's cmake directory in order for the linking and function definitions to work correctly. Monero-gui has its own version check and generate file in order to not conflict with monero's destination version files. Most of the source files that are currently in monero-gui's root directory are now moved to subdirectories. This is done to preserve compilation order properly and to give some content structure. The original CMakeList file included all headers it found in subdirectories. Make sure that they are set manually to evade linking errors. The current build script always checks out latest master of the monero submodule. The submodule rules in the current CMakeLists.txt file do not enforce. An override to compile master nevertheless can still be given with `-D DEV_MODE`. To enable the linux X11 xcb linking the libraries had to be hardcoded. There does not seem to be good support for this in pkgconfig, or in existing cmake checks.