Ver Fonte

Meta: Add the base64 utility to the GN build

Timothy Flynn há 1 ano atrás
pai
commit
a88ee029d7

+ 1 - 0
Meta/gn/secondary/BUILD.gn

@@ -6,6 +6,7 @@ group("default") {
     "//Meta/Lagom/Tools/CodeGenerators/IPCCompiler",
     "//Tests",
     "//Userland/Libraries/LibWeb",
+    "//Userland/Utilities:base64",
     "//Userland/Utilities:js",
   ]
   testonly = true

+ 10 - 0
Meta/gn/secondary/Userland/Utilities/BUILD.gn

@@ -1,3 +1,13 @@
+executable("base64") {
+  sources = [ "base64.cpp" ]
+  include_dirs = [ "//Userland/Libraries" ]
+  deps = [
+    "//AK",
+    "//Userland/Libraries/LibCore",
+    "//Userland/Libraries/LibMain",
+  ]
+}
+
 executable("js") {
   sources = [ "js.cpp" ]
   include_dirs = [ "//Userland/Libraries" ]