summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2024-10-16CMake: Change -flto to -flto=auto to speed up linkingThorbjørn Lindeijer1-2/+2
And suppress a related warning: lto-wrapper: warning: using serial compilation of <N> LTRANS jobs
2024-10-15CMake: Include hpp and tcc files in sources listThorbjørn Lindeijer1-3/+6
This shouldn't affect the build, but it does make sure that these header files are recognized as part of the project by IDEs. Also removed 'strtest' from the list since there is no such directory.
2024-06-19CMake: Added install rules for configuration and dataThorbjørn Lindeijer1-0/+7
2024-06-07Use -ggdb everywhereFreeyorp1-1/+1
-fvar-tracking and -fvar-tracking-assignments are enabled by default when available, so are not explicitly set here.
2024-06-05Create generated files in the build directoryFreeyorp1-6/+7
Also, just require the use of full paths when #including a generated file. This fixes fresh out-of-tree builds using attoconf, and gets rid of a lot of annoying terminal output when attoconf is tracing dependencies.
2024-06-05CMakeLists.txt: Add install targetFreeyorp1-0/+5
2024-06-05CMakeLists.txt: Remove dead code, add TODOsFreeyorp1-4/+2
2024-06-05Generate {install,version}.hpp through attoconfFreeyorp1-2/+2
Or more specifically, in the attoconf buildchain. attoconf itself directly generates src/conf/install.hpp alongside Makefile, but version inforation is only available later. To generate version.hpp, I extended version.mk slightly to provide the recipe. It's not anywhere near as generic as real.make tends to be, but with any luck we'll soon be doing all builds through cmake going forward. The template for install.hpp has been changed to use variables actually provided by attoconf. PACKAGE{SYSCONF,LOCALSTATE}DIR are actually only defined in real.make, and then only in terms of SYSCONFDIR and LOCALSTATEDIR, adding `/tmwa`. It's simpler to just use the attoconf variable and adjust the template, which conveniently also simplifies the construction in CMakeLists.txt, too.
2024-06-05VENDOR_SOURCE: github.com -> git.themanaworld.orgFreeyorp1-1/+1
2024-06-05cmake: Fix out of tree buildFreeyorp1-2/+6
Also remove {install,version}.hpp from source control, so they're actually generated. There may be a better way to handle this, but I'll just leave a note as a TODO for now.
2024-06-05CMake: Make the build work the first timeThorbjørn Lindeijer1-17/+14
Use execute_process instead of add_custom_target to make sure the generated files are found on the first configure run. Set CMAKE_CONFIGURE_DEPENDS so that touching the script generating files will automatically trigger a re-configre, which will re-run the make process.
2024-06-05CMake: Simplified VERSION_DOTS and match version.mk SO versionThorbjørn Lindeijer1-2/+5
2024-06-05CMake: Generate the install.hpp and version.hpp filesThorbjørn Lindeijer1-4/+53
The values of defines in these files should be the same as those set from version.mk / Makefile.in.
2024-06-05Forgot to add 'generate' as dependency to login/char binary nowThorbjørn Lindeijer1-2/+2
2024-06-05Fixed tmwa-map linker errors and made tmwa-login and tmwa-char compileThorbjørn Lindeijer1-6/+25
2024-06-04WIP: Add CMake based toolchainFreeyorp1-0/+102
attoconf is a bespoke build system that has seen little maintenance, and the overwhelming majority of build logic happens inside real.mk, here Makefile.in. While attoconf and real.mk provide a lot of very nice functionality, it doesn't integrate so well with IDEs, and is very intimidating for prospective developers. Providing a full cmake based approach solves both of these problems, and there isn't anything so complicated in tmwa that it needs its own build system. WIP: This represents a messy dump of CMakeLists.txt in the last state I left it. It has been shared to make collaboration easier, but should by no means be considered anything more than exploratory at this point.