diff options
author | Mavridis Philippe <[email protected]> | 2024-02-01 16:44:26 +0200 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2024-02-01 16:53:20 +0200 |
commit | 4acb982e2d5b82ddfe603414665256323a25ad5e (patch) | |
tree | b137112d00a4340f0cf25b64ebe5926f505c3de2 /ConfigureChecks.cmake | |
download | xdg-desktop-portal-tde-4acb982e2d5b82ddfe603414665256323a25ad5e.tar.gz xdg-desktop-portal-tde-4acb982e2d5b82ddfe603414665256323a25ad5e.zip |
Initial commit
Adds implementation of FileChooser interface
Signed-off-by: Mavridis Philippe <[email protected]>
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..8a2c606 --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,23 @@ +################################################################################ +# XDG Desktop Portal implementation for TDE # +# Copyright (C) 2024 Mavridis Philippe <[email protected]> # +# # +# Improvements and feedback are welcome! # +# This software is licensed under the terms of the GNU GPL v3 license. # +################################################################################ + +find_package( TQt ) +find_package( TDE ) + +tde_setup_architecture_flags( ) + +include( TestBigEndian ) +test_big_endian( WORDS_BIGENDIAN ) + +tde_setup_largefiles( ) + +if( WITH_GCC_VISIBILITY ) + tde_setup_gcc_visibility( ) +endif( WITH_GCC_VISIBILITY ) + +tde_setup_dbus( dbus-1-tqt )
\ No newline at end of file |