
I'm taking a page from Dolphin's book, and including copies of each dependency's source code. This combines the ease of use of including pre-built libraries instead of needing to navigate a package manager - as is (or was) the case for MSVC - with the portability of using packages. Granted, this method's more of a jack of all trades, master of none, since it's *less* user-friendly than prebuilt packages (compilation times), and you don't get the per-distro compatibility fixes you'd get from a package manager. You can still use system libs if you want. In fact, it's still the default behaviour: compiling the libs manually is just a fallback. I'll add an option to force-enable this soon, however, since it's a nicer way to produce static MSYS2 builds than the hackish nightmare that I was using before. Not to mention, having my own copy of the sources means I can provide my own fixes and tweaks your package manager may not. For example, I can combine MSYS2's FreeType subpixel rendering with vcpkg's fix for SDL2 exporting its symbols in static builds.
38 lines
1.5 KiB
CMake
38 lines
1.5 KiB
CMake
# Dashboard is opened for submissions for a 24 hour period starting at
|
|
# the specified NIGHLY_START_TIME. Time is specified in 24 hour format.
|
|
SET (NIGHTLY_START_TIME "21:00:00 EDT")
|
|
|
|
# Dart server to submit results (used by client)
|
|
SET (DROP_METHOD "http")
|
|
SET (DROP_SITE "public.kitware.com")
|
|
SET (DROP_LOCATION "/cgi-bin/HTTPUploadDartFile.cgi")
|
|
SET (TRIGGER_SITE "http://${DROP_SITE}/cgi-bin/Submit-Fltk-TestingResults.pl")
|
|
|
|
# Project Home Page
|
|
SET (PROJECT_URL "http://www.fltk.org")
|
|
|
|
# Dart server configuration
|
|
SET (ROLLUP_URL "http://${DROP_SITE}/cgi-bin/fltk-rollup-dashboard.sh")
|
|
SET (CVS_WEB_URL "http://cvs.sourceforge.net/viewcvs.py/fltk/fltk/")
|
|
SET (CVS_WEB_CVSROOT "fltk")
|
|
|
|
SET (USE_GNATS "On")
|
|
SET (GNATS_WEB_URL "http://www.fltk.org/str.php")
|
|
|
|
# Continuous email delivery variables
|
|
SET (CONTINUOUS_FROM "fltk-dashboard@public.kitware.com")
|
|
SET (SMTP_MAILHOST "public.kitware.com")
|
|
SET (CONTINUOUS_MONITOR_LIST "fltk-dashboard@public.kitware.com")
|
|
SET (CONTINUOUS_BASE_URL "http://public.kitware.com/Fltk/Testing")
|
|
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_FAILURES ON)
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL "Continuous Nightly")
|
|
SET (EMAIL_FROM "fltk-dashboard@public.kitware.com")
|
|
SET (DARTBOARD_BASE_URL "http://public.kitware.com/Fltk/Testing")
|
|
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_CONFIGURE_FAILURES 1)
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_BUILD_ERRORS 1)
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_BUILD_WARNINGS 1)
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_NOT_RUNS 1)
|
|
SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_FAILURES 1)
|
|
|