mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 02:56:39 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
30 lines
727 B
Text
30 lines
727 B
Text
--- build/linux/unbundle/libusb.gn.orig 2023-11-29 21:39:40 UTC
|
|
+++ build/linux/unbundle/libusb.gn
|
|
@@ -1,3 +1,27 @@
|
|
+# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
+# Use of this source code is governed by a BSD-style license that can be
|
|
+# found in the LICENSE file.
|
|
+
|
|
+import("//build/config/linux/pkg_config.gni")
|
|
+import("//build/shim_headers.gni")
|
|
+
|
|
+pkg_config("system_libusb") {
|
|
+ packages = [ "libusb-1.0" ]
|
|
+}
|
|
+
|
|
+shim_headers("libusb_shim") {
|
|
+ root_path = "src/libusb"
|
|
+ headers = [
|
|
+ "libusb.h",
|
|
+ ]
|
|
+}
|
|
+
|
|
+source_set("libusb") {
|
|
+ deps = [
|
|
+ ":libusb_shim",
|
|
+ ]
|
|
+ public_configs = [ ":system_libusb" ]
|
|
+}
|
|
import("//build/config/linux/pkg_config.gni")
|
|
import("//build/shim_headers.gni")
|
|
|