summaryrefslogtreecommitdiffstats
path: root/modules/TDEMacros.cmake
Commit message (Collapse)AuthorAgeFilesLines
...
* tde_create_translated_desktop: Fix CMP0054 warning in case of specialSlávek Banko2020-07-271-1/+1
| | | | | | desktop file name that could be the same as the keyword. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Fix processing when using configure_file.Slávek Banko2020-06-261-1/+1
| | | | | | | | Although the processing with configure_file was done properly, the original source file was used instead of the processed one to merge the translations. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Add the ability to process multiple sourceSlávek Banko2020-06-251-111/+126
| | | | | | files to be installed in the same destination folder. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: PO_DIR can be specified as relative.Slávek Banko2020-06-251-8/+17
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Process the source file using configure_fileSlávek Banko2020-06-251-6/+13
| | | | | | if it has a ".cmake" extension. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Add the ability to call for the same sourceSlávek Banko2020-06-251-35/+39
| | | | | | file installed in another location. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Remove use of LINGUAS file to prevent writes to the source directoryaneejit12020-06-241-16/+8
| | | | | | This is for the resolution of bug 3133 Signed-off-by: aneejit1 <aneejit1@gmail.com>
* Remove adding dependencies that were previously neededSlávek Banko2020-06-161-9/+0
| | | | | | to build tdelibs as such. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix FTBS if CMAKE_BUILD_TYPE is not set.Slávek Banko2020-06-141-1/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Set the LINK_INTERFACE_LIBRARIES and INTERFACE_LINK_LIBRARIESSlávek Banko2020-06-141-1/+4
| | | | | | | | | | properties not only for the default, but also for the specific build type. This resolve FTBFS when using private linking if the build is of type Debug. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_add_library: Add the ability to link libraries as private.Slávek Banko2020-06-121-0/+18
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Move templates to a separate directory and rename to the tde_ prefix.Slávek Banko2020-06-121-4/+30
| | | | | | Create the TDE_CMAKE_ROOT and TDE_CMAKE_TEMPLATES variables. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: For working files in a binary directory,Slávek Banko2020-06-111-1/+8
| | | | | | | | use the relative path according to the source directory instead of the base file names. This will prevent potential base file name collisions and allow the creation of common rules. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_dcop_kidl: Use dcopildng as the default instead of dcopidl.Slávek Banko2020-06-071-4/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_handbook: Add an optional SOURCE_BASEDIR argument.Slávek Banko2020-05-281-7/+42
| | | | | | | | | | | | Using the optional SOURCE_BASEDIR argument, it is possible to use tde_create_handbook in CMakeLists.txt from a folder other than the folder containing the documentation itself. This will allow the creation of common rules for generating documentation for all languages that are currently available, without the need to create CMakeLists.txt in the directory of each individual language. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Use output name only during installation.Slávek Banko2020-05-271-8/+12
| | | | | | | | | In the cmake binary directory, the name of the working file must be used according to the source file to avoid possible collisions if the source directory contains multiple desktop files installed as a ".directory" file in multiple destination directories. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Write metadata to libraries and executables using the post-build command,Slávek Banko2020-05-241-19/+31
| | | | | | | | | except when building tdelibs, where a separate target will be used and writing metadata will be the last step. This also resolve TDE/tdelibs#80. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Force the use of intltool-merge.Slávek Banko2020-05-151-5/+14
| | | | | | | | | Because some of our desktop files contain underscores in variable names (for example eventsrc), which is not an allowed character for names of entries in desktop style files, we can't use msgfmt, so we need intltool-merge. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Write metadata to libraries and binaries as a last step.Slávek Banko2020-05-111-2/+20
| | | | | | | This prevents concurrency of writing metadata and linking with other libraries, which could cause FTBFS. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add caching of variables from checks results and add conditionsSlávek Banko2020-05-111-19/+30
| | | | | | to avoid unnecessary repetition of checks. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Replace the remaining KDE3 macros.Slávek Banko2020-05-071-4/+141
| | | | | | | | | | | + Targets are created to generate files, not just commands. + Generating kidl files is created as a separate targets. + Headers are added to the list of generated files. + This allows for more accurate dependency determination. + This prevents files generation from being repeated. + This prevents the occasional FTBFS during a parallel build. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Allow spaces around the equal sign.Slávek Banko2020-05-071-8/+7
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_handbook: Improve build message.Slávek Banko2020-04-101-0/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Create symlink for base soname for libraries with release number in the nameSlávek Banko2020-04-081-2/+16
| | | | | | | as a separate target instead of POST_BUILD command. This prevents the command from being executed multiple times and thus FTBFS. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Store ELF metadata as a separate target instead of the POST_BUILD command.Slávek Banko2020-04-041-10/+23
| | | | | | This allows naturally storing ELF metadata also in tdelibs. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Avoid storing "_version-NOTFOUND" in ELF metadata.Slávek Banko2020-04-041-0/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_read_src_metadata: Typo correction.Slávek Banko2020-04-041-1/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Use full name for target.Slávek Banko2020-04-041-10/+16
| | | | | | | This solves the case where the desktop file name is not unique throughout the project. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_translated_desktop: Cleaning the LINGUAS fileSlávek Banko2020-04-021-4/+13
| | | | | | | | | | | that is generated for merging desktop file translations will not be performed as a POST BUILD command, but as a separate target. This solves premature file deletion if multiple desktop files use a common translation folder. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* tde_create_tarball: Add options to ensure reproducibility.Slávek Banko2020-03-231-4/+12
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add support for creation of translated desktop files during build.Slávek Banko2020-03-231-0/+216
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Use the source package date or the source git repository dateSlávek Banko2020-03-231-2/+53
| | | | | | | instead of the current build date. The use of a stable date is necessary to achieve reproducible builds. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add support for embedding libraries when building on SunOS.Slávek Banko2020-03-091-1/+5
| | | | | | Based on the work of Denis Kozadaev on DilOS. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Remove -fvisibility-inlines-hidden from CMAKE_C_FLAGSSlávek Banko2019-12-021-1/+1
| | | | | | because this is only valid for C++. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update tde_add_check_executable macroSlávek Banko2019-04-021-1/+3
| | | | | | + Add support for test arguments. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix installation of base soname for libraries with release number in the name.Slávek Banko2019-03-051-1/+1
| | | | | | This resolves regression from prior commit. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add a function that determines the filename of the librarySlávek Banko2019-02-181-32/+44
| | | | | | | for the target. This replaces get_target_property( LOCATION ) that is deprecated due to CMP0026. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update tde_setup_gcc_visibility macroSlávek Banko2019-02-031-30/+34
| | | | | | | | | + In the test include kdemacros.h with detected full path to avoid FTBFS. + Do not test gcc visibility on TDE unless the current module uses TDE. + Do not test gcc visibility on TQt unless the current module uses TQt. + Improve test for gcc visibility on TQt to make it more accurate. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update tde_setup_dbus macroSlávek Banko2019-01-311-8/+16
| | | | | | | + Old versions of dbus do not include a definition for system_bus_services_dir. + The value for system_bus_services_dir is derived from session_bus_services_dir. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_setup_polkit macro.Slávek Banko2019-01-281-0/+45
| | | | | | This resolves issue #21. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_setup_dbus macro.Slávek Banko2019-01-281-0/+78
| | | | | | This resolves issue #20. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_setup_largefiles macro.Slávek Banko2019-01-281-0/+86
| | | | | | | The macro sets the necessary definitions so that the default libc filesystem interface will be for large files on all architectures. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Use tde_setup_msgfmt in tde_create_translation if needed.Slávek Banko2019-01-281-2/+3
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_setup_msgfmt macro.Slávek Banko2019-01-281-0/+19
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_setup_gcc_visibility macro.Slávek Banko2019-01-281-0/+49
| | | | | | | | For the GCC visibility setting, a test is performed whether the system is UNIX-type and also whether TQt and tdelibs are built with GCC visibility support. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update tde_create_tarball macroSlávek Banko2019-01-191-1/+43
| | | | | | | + Use external tar for ensure files owner in tarball. + Add an option to specify compression program. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix tde_create_tarball macroSlávek Banko2019-01-141-3/+8
| | | | | | | + The destination path for the installation was not properly used. + Dependency on source files was wrong when SOURCEDIR was used. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Add tde_create_tarball macro.Slávek Banko2019-01-111-0/+83
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix small typing errors in the tde_create_translation macro.Slávek Banko2018-12-021-5/+5
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Use POSITION_INDEPENDENT_CODE property for CMake >= 2.8.9.Slávek Banko2018-11-291-1/+5
| | | | | | This resolves bug 2985. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>