initial commit

This commit is contained in:
Robert 2020-11-05 14:21:59 +01:00
commit d6c71c84b8
4 changed files with 24 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
out
.vs
*.json

5
CMakeLists.txt Normal file
View file

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(FourierAnalyzer)
add_subdirectory(src)

7
src/CMakeLists.txt Normal file
View file

@ -0,0 +1,7 @@
add_executable(fourier
"main.cpp"
)
target_include_directories(fourier PRIVATE
${CMAKE_SOURCE_DIR}/include
)

8
src/main.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <iostream>
int main(int argc, char** argv)
{
std::cout << "Hello, World!" << std::endl;
return 0;
}