mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
13 lines
329 B
JavaScript
13 lines
329 B
JavaScript
jsb.library('mylibrary', jsb.STATIC_LIBRARY, function(libObject) {
|
|
libObject.outputName = 'mylibrary';
|
|
libObject.cflags = [ '-Wall' ];
|
|
libObject.ldflags = [ '-pthread' ];
|
|
libObject.includePaths = [ 'src/include' ];
|
|
libObject.sources = [
|
|
'src/main.cpp',
|
|
'src/app.cpp'
|
|
];
|
|
});
|
|
|
|
jsb.build();
|