aboutsummaryrefslogtreecommitdiff
path: root/cmake
Commit message (Collapse)AuthorAgeFilesLines
* workflows: switch to ucrt runtime for msys2selsta2026-06-022-100/+0
|
* cmake: warn if qmake has -qt5 suffix during deployselsta2026-01-151-1/+5
| | | | | Also make sure that windeployqt only runs when make deploy is executed.
* cmake: update deploy icu versionselsta2025-11-131-5/+5
|
* cmake: update macOS deploy for newer boostselsta2025-08-251-10/+13
|
* cmake: fix deploy icu versionselsta2025-05-031-5/+5
|
* ci: fix MSYS2 buildtobtoht2025-02-251-5/+5
|
* Win deploy: Boost Regex is header-only since 1.77malinero2025-02-201-1/+6
|
* Update year in Cypyrightinson12024-01-273-3/+3
|
* Merge pull request #4245luigi11112024-01-181-17/+6
|\ | | | | | | 06ed059 cmake: fix deploy by updating libicu version (selsta)
| * cmake: fix deploy by updating libicu versionselsta2023-11-141-17/+6
| | | | | | | | msys2 package manager doesn't have mingw64 debug DLLs for libicu anymore so I removed them.
* | cmake: update sodium dll from 23 to 26selsta2023-10-211-1/+1
|/
* Merge pull request #4210luigi11112023-09-141-10/+10
|\ | | | | | | d42caf1 cmake: update libicu to 73 (selsta)
| * cmake: update libicu to 73selsta2023-08-181-10/+10
| |
* | Merge pull request #4154luigi11112023-09-141-0/+21
|\ \ | | | | | | | | | 371ff61 cmake: copy missing boost lib, run codesign (selsta)
| * | cmake: copy missing boost lib, run codesignselsta2023-04-171-0/+21
| |/
* | Merge pull request #4150luigi11112023-09-141-1/+6
|\ \ | | | | | | | | | 5345dcc cmake: add install_name_tool to fix svg rendering (selsta)
| * | cmake: add install_name_tool to fix svg renderingselsta2023-04-151-1/+6
| |/
* / deploy: remove libssptobtoht2023-05-301-1/+0
|/ | | | https://github.com/msys2/MINGW-packages/commit/dfa6dd8c269cb4899e57f7ae033ab54e5a7b414f
* cmake: fix windows deployselsta2023-02-191-3/+3
|
* deploy: update libicu to 72selsta2022-11-011-10/+10
|
* cmake: update libicu dll versionselsta2022-08-211-10/+10
|
* cmake: bump windows deploy lib versionsselsta2022-04-061-10/+10
|
* cmake: simplify version, fix tag if git isn't foundselsta2021-10-192-73/+4
|
* Merge pull request #3679luigi11112021-09-051-56/+0
|\ | | | | | | 18a7629 cmake: cleanup redundant ccache file (selsta)
| * cmake: cleanup redundant ccache fileselsta2021-08-311-56/+0
| |
* | Merge pull request #3473luigi11112021-09-051-52/+0
|\ \ | |/ |/| | | 165817e cmake: cleanup test-libusb-version.c (selsta)
| * cmake: cleanup test-libusb-version.cselsta2021-08-311-52/+0
| |
* | cmake: remove unnecessary stepsselsta2021-08-121-5/+1
| |
* | cmake: cleanup hidapi / libusbselsta2021-05-132-209/+0
|/
* cmake: WIN_DEPLOY_DLLS - update libicu version to 68xiphon2021-04-241-10/+10
|
* QR-Code-scanner: integrate QUIRC library, implement QrDecoder, drop ZBarxiphon2020-12-231-38/+0
|
* cmake: ZBar - Android support, fix find_package without pkg-configxiphon2020-10-211-8/+24
|
* cmake: remove unused codexiphon2020-10-0614-2438/+0
|
* cmake: add deploy target (mac / windows)selsta2020-09-241-0/+103
|
* cmake: drop redundant CheckTrezor includexiphon2020-09-101-181/+0
|
* version: use MONERO_VERSION_FULL const as monero core versionxiphon2020-07-151-5/+5
|
* cmake: fix git tag + commit detection and version.js generationxiphon2020-07-012-45/+45
|
* cmake: workflows: implement 'release' Linux build target + CIxiphon2020-05-281-0/+56
|
* Migrate build system to cmakeTheCharlatan2019-11-2725-0/+3179
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.