- Imported bundles have the MACOSX_BUNDLE property set - Added cmTarget::IsAppBundleOnApple method to simplify checks - Document BUNDLE keyword in INSTALL command - Updated IMPORTED_LOCATION property documentation for bundles - Updated ExportImport test to test bundles
12 lines
268 B
C
12 lines
268 B
C
extern int generated_by_testExe1();
|
|
extern int generated_by_testExe3();
|
|
extern int testLib2();
|
|
extern int testLib3();
|
|
extern int testLib4();
|
|
|
|
int main()
|
|
{
|
|
return (testLib2() + generated_by_testExe1() + testLib3() + testLib4()
|
|
+ generated_by_testExe3());
|
|
}
|