7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
function main(){
|
|
const stb = new pmake.LibraryProject("stb");
|
|
stb.sources = ["stb_ds.c"];
|
|
stb.includes = ["."];
|
|
|
|
pmake.register(stb);
|
|
}
|