This commit is contained in:
2022-02-11 19:59:20 +01:00
parent a6a31af7b9
commit 4987702f4e
5 changed files with 55 additions and 1 deletions

34
.gitignore vendored
View File

@@ -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

8
CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.20)
project(Frame)
set(CMAKE_CXX_STANDARD 17)
add_subdirectory(frame)

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) <year> <copyright holders>
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:

5
frame/CMakeLists.txt Normal file
View File

@@ -0,0 +1,5 @@
set(target frame)
add_executable(${target} main.cpp)

7
frame/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
int main()
{
std::cout << "Hallo Welt" << std::endl;
return 0;
}