((category ui) (synopsis "Multi-platform HTML user interface shell") (author "Thomas Chust") (license "BSD") (version "1.0.1") (dependencies srfi-1 srfi-13 srfi-18 srfi-69 utf8) (test-dependencies test) (components (extension webview (modules webview-content webview) (source-dependencies "webview.h" "content.scm" "main.scm") (objects webview-impl) (cond-expand [windows (csc-options -L -ladvapi32 -L -luser32 -L -lgdi32 -L -lole32 -L -loleaut32 -L -luuid)] [macosx (csc-options -L -framework Cocoa)] [else (custom-build "build-webview")])) (c-object webview-impl (source-dependencies "webview.h") (cond-expand [windows (csc-options -C -DWEBVIEW_WINAPI)] [macosx (csc-options -C -DWEBVIEW_COCOA -C -xobjective-c)] [else (custom-build "build-webview")])))) ;; vim: set ai et ts=4 sts=2 sw=2 ft=scheme: ;;