diff --git a/.gitignore b/.gitignore index e257658..0609e9d 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,37 @@ *.out *.app +build/.ninja_deps +build/.ninja_log +build/build.ninja +build/cmake_install.cmake +build/CMakeCache.txt +build/compile_commands.json +build/.cmake/api/v1/query/client-vscode/query.json +build/.cmake/api/v1/reply/cache-v2-8e3d784e6607879cd18c.json +build/.cmake/api/v1/reply/codemodel-v2-97bfd906ef366d86b34b.json +build/.cmake/api/v1/reply/index-2022-02-11T18-35-30-0824.json +build/.cmake/api/v1/reply/target-frame-Debug-7d0b6524a58d8e907a2f.json +build/.cmake/api/v1/reply/toolchains-v1-65972111b21e4388dc41.json +build/CMakeFiles/cmake.check_cache +build/CMakeFiles/CMakeOutput.log +build/CMakeFiles/rules.ninja +build/CMakeFiles/TargetDirectories.txt +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeCCompiler.cmake +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeCXXCompiler.cmake +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeDetermineCompilerABI_C.bin +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeDetermineCompilerABI_CXX.bin +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeRCCompiler.cmake +build/CMakeFiles/3.20.21032501-MSVC_2/CMakeSystem.cmake +build/CMakeFiles/3.20.21032501-MSVC_2/CompilerIdC/CMakeCCompilerId.c +build/CMakeFiles/3.20.21032501-MSVC_2/CompilerIdCXX/CMakeCXXCompilerId.cpp +build/CMakeFiles/ShowIncludes/foo.h +build/CMakeFiles/ShowIncludes/main.c +build/frame/cmake_install.cmake +build/frame/frame.ilk +build/frame/frame.pdb +build/frame/CMakeFiles/frame.dir/embed.manifest +build/frame/CMakeFiles/frame.dir/intermediate.manifest +build/frame/CMakeFiles/frame.dir/manifest.rc +build/frame/CMakeFiles/frame.dir/manifest.res +build/frame/CMakeFiles/frame.dir/vc140.pdb diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..a5bbee3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.20) + +project(Frame) + +set(CMAKE_CXX_STANDARD 17) + + +add_subdirectory(frame) diff --git a/LICENSE b/LICENSE index 2071b23..de03a78 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) +Copyright (c) 2022 Simon Hardt(Kaon-null) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/frame/CMakeLists.txt b/frame/CMakeLists.txt new file mode 100644 index 0000000..b9b2049 --- /dev/null +++ b/frame/CMakeLists.txt @@ -0,0 +1,5 @@ + +set(target frame) + + +add_executable(${target} main.cpp) \ No newline at end of file diff --git a/frame/main.cpp b/frame/main.cpp new file mode 100644 index 0000000..21b7742 --- /dev/null +++ b/frame/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hallo Welt" << std::endl; + return 0; +} \ No newline at end of file