diff options
Diffstat (limited to 'baseconfig')
-rw-r--r-- | baseconfig | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/baseconfig b/baseconfig deleted file mode 100644 index 0e2fb71..0000000 --- a/baseconfig +++ /dev/null @@ -1,100 +0,0 @@ -mainmenu "smolbote configuration" - -comment "Build" -menu "Compiler settings" - config CXX_FLAGS - string "Compiler Flags" - help - Compiler flags that should be applied to both Debug and Release builds. - default "-pipe -fstack-protector-strong -fno-plt -fPIE" - - config CXX_FLAGS_DEBUG - string "Debug Flags" - help - Compiler flags that should be applied to Debug builds. These flags, together with the Compiler Flags, are appended to CMAKE_CXX_FLAGS_DEBUG. - default "" - - config CXX_FLAGS_RELEASE - string "Release Flags" - help - Compiler flags that should be applied to Release builds. These flags, together with the Compiler Flags, are appended to CMAKE_CXX_FLAGS_RELEASE. - - -march=native -mtune=native will build executables that are optimized for the build environment's native arch. - default "" -endmenu - -menu "Install paths" - config INSTALL_PREFIX - string "Install prefix" - default "/usr/local" - config INSTALL_BIN - string "bin/ prefix" - default "bin" - config INSTALL_LIB - string "lib/ prefix" - default "lib/smolbote" -endmenu - -comment "Branding" -config POI_NAME - string "Application name" - default "smolbote" -config POI_EXE - string "Executable name" - default "poi" - -comment "Browser configuration" -menu "Configuration defaults" - config PATH_CONFIG - string "Configuration location" - default "~/.config/smolbote/smolbote.cfg" - config PATH_CRASHDUMP - string "Crash dump location" - default "~/.config/smolbote/crash.d" - config PATH_FILTER - string "Host filter path" - default "~/.config/smolbote/hosts.d" - config PATH_PLUGINS - string "Plugin load location" - default "~/.config/smolbote/plugins.d" - config PATH_PROFILES - string "Profile load location" - default "~/.config/smolbote/profiles.d" - config PATH_BOOKMARKS - string "Bookmarks location" - default "~/.config/smolbote/bookmarks.xbel" - config PATH_DOWNLOADS - string "Downloads location" - default "~/Downloads" -endmenu - -config USEPLASMA - bool "Enable KDE Frameworks integration" - default n - help - This is a help message - -config USEBREAKPAD - bool "Enable Breakpad integration" - default n - -comment "Devel" -config QTWARNINGS - bool "Enable Qt deprecated API warnings" - default y - -config TESTS - bool "Build tests" - default n - -config LLVMLIBCPP - bool "Link against the LLVM C++ standard library" - default n - -menu "Workarounds" - config QTBUG-62511 - bool "Use RCC version 1 format" - default y - help - See QTBUG-62511: rcc embeds time in output - -endmenu |