Adds support for JIRA link labels from Alchemy. (Made less of a mess by me) Adds support for x-grid-info, the future of x-grid-info-location from Alchemy. Updates uriparser latest from Alchemy. Updates llstring to be more in line with upstream Alchemy. Fixes our LLURI Implementation Updates LLURLAction to modern C++ stuffies~ Adds Email protocol support from alchemy Sync LLSLURL with Alchemy, adding x-grid-info support. Also keep NoProtocol Support because yaaassss~ (also we won't suffer from MAINT-5019 because we're not dumb.)
21 lines
462 B
CMake
21 lines
462 B
CMake
# -*- cmake -*-
|
|
|
|
set(URIPARSER_FIND_QUIETLY ON)
|
|
set(URIPARSER_FIND_REQUIRED ON)
|
|
|
|
include(Prebuilt)
|
|
|
|
if (USESYSTEMLIBS)
|
|
include(FindURIPARSER)
|
|
else (USESYSTEMLIBS)
|
|
use_prebuilt_binary(uriparser)
|
|
if (WINDOWS)
|
|
set(URIPARSER_LIBRARY
|
|
debug uriparserd
|
|
optimized uriparser)
|
|
elseif (DARWIN OR LINUX)
|
|
set(URIPARSER_LIBRARY uriparser)
|
|
endif (WINDOWS)
|
|
set(URIPARSER_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/uriparser)
|
|
endif (USESYSTEMLIBS)
|