! Update Repo
Gitea Actions Deploy / Explore-Gitea-Actions (push) Failing after 11m30s

This commit is contained in:
2023-12-26 22:25:06 +08:00
parent 43af8679d0
commit d5db60e42b
6 changed files with 117 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
project(helloworld)
set(SRC_FILE "main.cpp")
add_executable(${PROJECT_NAME} WIN32 ${SRC_FILE})
+10
View 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;
}