diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-12-13 17:48:14 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-12-13 17:59:43 +0100 |
commit | a6283453576ef8e387d837a13a1b4072a2b9532d (patch) | |
tree | d6c3c05037f58fbc65c6cfbff33e9c875e962b06 /ConfigureChecks.cmake | |
parent | a198c56607d4a2e3390e5583bf7eed19c7c9df0c (diff) | |
download | desktop-effects-tde-a6283453576ef8e387d837a13a1b4072a2b9532d.tar.gz desktop-effects-tde-a6283453576ef8e387d837a13a1b4072a2b9532d.zip |
Conversion to CMake build system.
Copy translations to a new directory layout.
Added translation of .desktop files.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..c1de8bc --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,23 @@ +########################################### +# # +# Improvements and feedback are welcome # +# # +# This file is released under GPL >= 3 # +# # +########################################### + +# required stuff +find_package( TQt ) +find_package( TDE ) + + +##### find tdepyuic executable + +find_program( TDEPYUIC_EXECUTABLE + NAMES tdepyuic + PATHS ${TDE_PREFIX}/bin +) + +if( NOT TDEPYUIC_EXECUTABLE ) + tde_message_fatal( "tdepyuic is required, but was not found on your system" ) +endif() |