Initial commit

This commit is contained in:
2022-08-28 14:27:03 -07:00
commit 3810e65cb5
28 changed files with 2540 additions and 0 deletions

28
config.cmake.default Normal file
View File

@ -0,0 +1,28 @@
# Change these to fit your needs
# Default path to search for modules
set(MODULE_DIRECTORY "modules/")
# Modules to add to build
# Linux
set(MODULE_NAMES "fcitx4.c" "time.c" "pulse.c" "linuxnm.c" "battery.c" "bluetooth.c" "optimus.c")
# FreeBSD
#set(MODULE_NAMES "fcitx4.c" "time.c" "oss.c")
# Non-module files to add to build
set(EXTRA_SOURCE_FILES)
# Extra flags to pass to compiler or linker
set(EXTRA_FLAGS)
# Modules to search for and add with pkg-config
# Linux
set(EXTRA_PACKAGES "libpulse" "libnm" "gio-2.0" "gio-unix-2.0")
# FreeBSD
#set(EXTRA_PACKAGES "gio-2.0" "gio-unix-2.0")
# Set to false to build without x11
set(USE_X TRUE)
# Version String
set(QTB_VERSION "1.0.0")