This commit is contained in:
2023-11-26 23:12:06 +01:00
commit f06e814dab
12 changed files with 220 additions and 0 deletions

12
CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
# Specify the minimum version of CMake required
cmake_minimum_required(VERSION 3.10)
# Set the project name and version
project(HelloWorldApp VERSION 1.0)
# Add the executable
add_executable(HelloWorldApp src/HelloWorldApp.cpp)
target_link_libraries(HelloWorldApp -static)
# install executable
install(TARGETS HelloWorldApp DESTINATION bin)