commit d6c71c84b8099ef1faa7a864d2644db8bd2f9853 Author: Robert Date: Thu Nov 5 14:21:59 2020 +0100 initial commit 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