From b3ee5f753480fabe0ed155dde43daee42272885f Mon Sep 17 00:00:00 2001 From: PreacherDHM Date: Fri, 7 Feb 2025 19:43:27 -0800 Subject: [PATCH] first --- .gitignore | 14 ++++++++++++++ CMakeLists.txt | 13 +++++++++++++ source/CMakeLists.txt | 0 source/main.cpp | 0 4 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 source/CMakeLists.txt create mode 100644 source/main.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ca8c1c --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps +CMakeUserPresets.json +build +bin diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3e7428b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.30) + +project(flipper VERSION 0.1) + +set(BIN ${CMAKE_CURRENT_SOURCE_DIR}/bin) + +# Setting the output path to ./bin +set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${BIN}) +set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${BIN}) +set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${BIN}) + +add_subdirectory(external) +add_subdirectory(source) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt new file mode 100644 index 0000000..e69de29 diff --git a/source/main.cpp b/source/main.cpp new file mode 100644 index 0000000..e69de29