mirror of
https://github.com/asdlokj1qpi233/subconverter.git
synced 2025-10-28 20:32:42 +00:00
Breaking changes
Fix data URIs not correctly parsed. Fix downloading files may be caught in infinite redirect loops. Add experimental JavaScript support for providing subscriptions, filtering nodes, sorting nodes and generating groups. Add tag support for adding group name to a specific link. Add complete matcher support for Emoji and rename match rule. Optimize codes. Update build scripts.
This commit is contained in:
12
cmake/FindDuktape.cmake
Normal file
12
cmake/FindDuktape.cmake
Normal file
@@ -0,0 +1,12 @@
|
||||
find_path(DUKTAPE_INCLUDE_DIRS duktape.h)
|
||||
|
||||
find_library(DUKTAPE_LIBRARY duktape)
|
||||
find_library(DUKTAPE_MODULE_LIBRARY duktape_module)
|
||||
|
||||
set(DUKTAPE_LIBRARIES "${DUKTAPE_LIBRARY} ${DUKTAPE_MODULE_LIBRARY}")
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(DUKTAPE DEFAULT_MSG
|
||||
DUKTAPE_INCLUDE_DIRS DUKTAPE_LIBRARY DUKTAPE_MODULE_LIBRARY)
|
||||
|
||||
mark_as_advanced(DUKTAPE_INCLUDE_DIRS DUKTAPE_LIBRARY)
|
||||
Reference in New Issue
Block a user