Benjamin Kraft 2 years ago
commit b687946251
  1. 2
      .gitignore
  2. 6
      CMakeLists.txt
  3. 6
      main.cpp

2
.gitignore vendored

@ -0,0 +1,2 @@
/.idea
/cmake-build-debug

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.24)
project(EventQueue)
set(CMAKE_CXX_STANDARD 23)
add_executable(EventQueue main.cpp)

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
Loading…
Cancel
Save