mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
10 lines
382 B
C++
10 lines
382 B
C++
![]() |
#include <iostream>
|
||
|
#include "config.h"
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
std::cout << "Hello World" << std::endl;
|
||
|
std::cout << "Welcome to the ISV Example for how to extend CMake projects in Eclipse CDT." << std::endl;
|
||
|
std::cout << "Version " << ${projectName?replace(" ", "_")}_VERSION_MAJOR << "." << ${projectName?replace(" ", "_")}_VERSION_MINOR << std::endl;
|
||
|
return 0;
|
||
|
}
|