From 9d889f9673746e6f1b3a65833f7fa3f722ef6d9d Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sat, 21 Sep 2024 13:14:04 +0200 Subject: [PATCH] Removed deprecated library properties. --- libraries/curl.c3l/manifest.json | 12 ++++++------ libraries/raylib.c3l/manifest.json | 14 +++++++------- libraries/raylib5.c3l/manifest.json | 16 ++++++++-------- libraries/sdl2.c3l/manifest.json | 14 +++++++------- libraries/tigr.c3l/manifest.json | 10 +++++----- 5 files changed, 33 insertions(+), 33 deletions(-) diff --git a/libraries/curl.c3l/manifest.json b/libraries/curl.c3l/manifest.json index 5e7f46f..ad20721 100644 --- a/libraries/curl.c3l/manifest.json +++ b/libraries/curl.c3l/manifest.json @@ -2,22 +2,22 @@ "provides" : "curl", "targets" : { "macos-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["curl"] + "linked-libraries" : ["curl"] }, "macos-aarch64": { - "linkflags": [], + "link-args": [], "dependencies": [], "linked-libraries": ["curl"] }, "linux-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["curl"] + "linked-libraries" : ["curl"] }, "windows-x64" : { - "linked-libs" : ["curl"] + "linked-libraries" : ["curl"] } } } diff --git a/libraries/raylib.c3l/manifest.json b/libraries/raylib.c3l/manifest.json index 28d2252..e4adee7 100644 --- a/libraries/raylib.c3l/manifest.json +++ b/libraries/raylib.c3l/manifest.json @@ -2,22 +2,22 @@ "provides" : "raylib", "targets" : { "macos-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] + "linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] }, "macos-aarch64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] + "linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] }, "linux-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "GLESv2", "glfw3", "c"] + "linked-libraries" : ["raylib", "GLESv2", "glfw3", "c"] }, "windows-x64" : { - "linked-libs" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"], + "linked-libraries" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"], "wincrt": "none" } } diff --git a/libraries/raylib5.c3l/manifest.json b/libraries/raylib5.c3l/manifest.json index 5bd5144..a8a5b50 100644 --- a/libraries/raylib5.c3l/manifest.json +++ b/libraries/raylib5.c3l/manifest.json @@ -2,26 +2,26 @@ "provides" : "raylib5", "targets" : { "macos-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] + "linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] }, "macos-aarch64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] + "linked-libraries" : ["raylib", "Cocoa.framework", "OpenGL.framework", "CoreVideo.framework", "GLUT.framework", "IOKit.framework", "c"] }, "linux-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["raylib", "GLESv2", "glfw3", "c"] + "linked-libraries" : ["raylib", "GLESv2", "glfw3", "c"] }, "windows-x64" : { - "linked-libs" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"], + "linked-libraries" : ["raylib", "opengl32", "kernel32", "user32", "gdi32", "winmm", "winspool", "comdlg32", "advapi32", "shell32", "ole32", "oleaut32", "uuid", "odbc32", "odbccp32"], "wincrt": "none" }, "wasm32" : { - "linked-libs" : ["raylib"] + "linked-libraries" : ["raylib"] } } } \ No newline at end of file diff --git a/libraries/sdl2.c3l/manifest.json b/libraries/sdl2.c3l/manifest.json index df52836..d8c5743 100644 --- a/libraries/sdl2.c3l/manifest.json +++ b/libraries/sdl2.c3l/manifest.json @@ -2,22 +2,22 @@ "provides" : "sdl2", "targets" : { "macos-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : [] + "linked-libraries" : [] }, "macos-aarch64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : [] + "linked-libraries" : [] }, "linux-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["SDL2"] + "linked-libraries" : ["SDL2"] }, "windows-x64" : { - "linked-libs" : [] + "linked-libraries" : [] } } } diff --git a/libraries/tigr.c3l/manifest.json b/libraries/tigr.c3l/manifest.json index c28aa18..aa225d3 100644 --- a/libraries/tigr.c3l/manifest.json +++ b/libraries/tigr.c3l/manifest.json @@ -2,17 +2,17 @@ "provides" : "tigr", "targets" : { "macos-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : ["tigr", "Cocoa.framework", "OpenGL.framework"] + "linked-libraries" : ["tigr", "Cocoa.framework", "OpenGL.framework"] }, "linux-x64" : { - "linkflags" : [], + "link-args" : [], "dependencies" : [], - "linked-libs" : [ "tigr", "GLU", "GL", "X11" ] + "linked-libraries" : [ "tigr", "GLU", "GL", "X11" ] }, "windows-x64" : { - "linked-libs" : [ "opengl32", "gdi32" ] + "linked-libraries" : [ "opengl32", "gdi32" ] } } }