blob: bde6757578a7806a36c22bb39842f5aee6e51c19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
################################################################################
# Polyester - widget style and twin decoration aimed to be a good balance #
# between eye candy and simplicity #
# #
# This file is released under the GNU GPL version 3 or later. #
# Improvements and feedback are welcome! #
################################################################################
### TQt/TDE ####################################################################
find_package(TQt)
find_package(TDE)
tde_setup_architecture_flags()
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
tde_setup_largefiles()
### GCC visibility #############################################################
if (WITH_GCC_VISIBILITY)
tde_setup_gcc_visibility()
endif()
|