You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
939 B
21 lines
939 B
2 months ago
|
################################################################################
|
||
|
# twin-style-mallory #
|
||
|
# ------------------ #
|
||
|
# This file is licensed under the terms of GNU GPL v3 or later. #
|
||
|
# Improvements and feedback are welcome. #
|
||
|
################################################################################
|
||
|
|
||
|
### TQt/TDE ####################################################################
|
||
|
find_package(TQt)
|
||
|
find_package(TDE)
|
||
|
tde_setup_architecture_flags()
|
||
|
tde_setup_largefiles()
|
||
|
|
||
|
### Big Endian #################################################################
|
||
|
include(TestBigEndian)
|
||
|
test_big_endian(WORDS_BIGENDIAN)
|
||
|
|
||
|
### GCC visibility #############################################################
|
||
|
if (WITH_GCC_VISIBILITY)
|
||
|
tde_setup_gcc_visibility()
|
||
|
endif()
|