Files
armorpaint/armorlab/plugins/project.js
T

16 lines
392 B
JavaScript
Raw Normal View History

2024-08-30 21:02:15 +02:00
let project = new Project("plugins");
2023-02-08 17:15:19 +01:00
2024-09-12 21:24:34 +02:00
project.add_cfiles("plugins.c");
2023-02-08 17:15:19 +01:00
2024-08-30 21:02:15 +02:00
if (platform === "windows") {
2024-09-12 21:24:34 +02:00
project.add_lib('proc_texsynth/win32/texsynth');
2023-02-08 17:15:19 +01:00
}
2024-08-30 21:02:15 +02:00
else if (platform === "linux") {
2024-09-12 21:24:34 +02:00
project.add_lib("texsynth -L" + project.basedir + "/proc_texsynth/linux");
2023-02-08 17:15:19 +01:00
}
2024-08-30 21:02:15 +02:00
else if (platform === "macos") {
2024-09-12 21:24:34 +02:00
project.add_lib(project.basedir + '/proc_texsynth/macos/libtexsynth.a');
2023-02-08 17:15:19 +01:00
}
2024-05-19 23:36:33 +02:00
return project;