This commit is contained in:
2025-02-07 19:43:27 -08:00
commit b3ee5f7534
4 changed files with 27 additions and 0 deletions

14
.gitignore vendored Normal file
View File

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

13
CMakeLists.txt Normal file
View File

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

0
source/CMakeLists.txt Normal file
View File

0
source/main.cpp Normal file
View File