From d6c71c84b8099ef1faa7a864d2644db8bd2f9853 Mon Sep 17 00:00:00 2001 From: Robert Date: Thu, 5 Nov 2020 14:21:59 +0100 Subject: [PATCH] initial commit --- .gitignore | 4 ++++ CMakeLists.txt | 5 +++++ src/CMakeLists.txt | 7 +++++++ src/main.cpp | 8 ++++++++ 4 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 src/CMakeLists.txt create mode 100644 src/main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..013244b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +out +.vs + +*.json \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..420e145 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.10) + +project(FourierAnalyzer) + +add_subdirectory(src) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..cd8130d --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,7 @@ +add_executable(fourier + "main.cpp" +) + +target_include_directories(fourier PRIVATE + ${CMAKE_SOURCE_DIR}/include +) \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..13e2518 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,8 @@ +#include + +int main(int argc, char** argv) +{ + std::cout << "Hello, World!" << std::endl; + + return 0; +} \ No newline at end of file