-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 2a8381af76eab5bec53b74ca72f7855576ba780d Mon Sep 17 00:00:00 2001 | ||
From: Brett Jia <[email protected]> | ||
Date: Wed, 19 Jun 2024 21:52:59 -0400 | ||
Subject: [PATCH] switch meson to build static lib | ||
|
||
--- | ||
meson.build | 3 +-- | ||
1 file changed, 1 insertion(+), 2 deletions(-) | ||
|
||
diff --git a/meson.build b/meson.build | ||
index be2c2e9bb249..6f774754d628 100644 | ||
--- a/meson.build | ||
+++ b/meson.build | ||
@@ -30,12 +30,11 @@ librga_srcs = [ | ||
|
||
incdir = include_directories('include', 'im2d_api', 'core/hardware', 'core/utils', 'core/3rdparty/libdrm/include/drm') | ||
|
||
-librga = shared_library( | ||
+librga = static_library( | ||
'rga', | ||
librga_srcs, | ||
dependencies : [libthreads_dep], | ||
include_directories : incdir, | ||
- version : meson.project_version(), | ||
cpp_args : ['-w'], | ||
install : true, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters