mirror of
https://github.com/threeal/cmake-action.git
synced 2026-02-02 03:50:55 +00:00
add a test project for testing this action
This commit is contained in:
3
test/CMakeLists.txt
Normal file
3
test/CMakeLists.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
project(test)
|
||||
add_executable(hello_world hello_world.cpp)
|
||||
6
test/hello_world.cpp
Normal file
6
test/hello_world.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello world!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user