mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-27 06:42:32 +08:00

-- Update test suite so that CMake can use multiple toolsets CMake_TEST_GreenHillsMULTI_config ghs_config_name ghs_target_arch ghs_tools ghs_toolset_name ghs_os_root ghs_os_dir ghs_target_platform ghs_bsp_name -- Change ARM Integrity test to generic Integrity test Add Monolithic build test -- Add other GHS generator tests
9 lines
146 B
C
9 lines
146 B
C
extern int funcOBJ(void);
|
|
extern int funcOBJ2(void);
|
|
extern int funcOBJs(void);
|
|
|
|
int main(void)
|
|
{
|
|
return funcOBJ() + funcOBJ2() + funcOBJs();
|
|
}
|