This commit is contained in:
luboslenco
2024-09-12 21:24:34 +02:00
parent ee0b32a0d7
commit 7841a5d5c6
16 changed files with 139 additions and 140 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
let project = new Project("plugins");
project.addFile("plugins.c");
project.add_cfiles("plugins.c");
if (platform === "windows") {
project.addLib('proc_texsynth/win32/texsynth');
project.add_lib('proc_texsynth/win32/texsynth');
}
else if (platform === "linux") {
project.addLib("texsynth -L" + project.basedir + "/proc_texsynth/linux");
project.add_lib("texsynth -L" + project.basedir + "/proc_texsynth/linux");
}
else if (platform === "macos") {
project.addLib(project.basedir + '/proc_texsynth/macos/libtexsynth.a');
project.add_lib(project.basedir + '/proc_texsynth/macos/libtexsynth.a');
}
return project;