This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
project(helloworld)
|
||||
|
||||
set(SRC_FILE "main.cpp")
|
||||
|
||||
add_executable(${PROJECT_NAME} WIN32 ${SRC_FILE})
|
||||
@@ -0,0 +1,10 @@
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
|
||||
int WinMain(int argc, char const *argv[])
|
||||
{
|
||||
/* code */
|
||||
std::cout << "Hello World!!!!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user