Initial commit

This commit is contained in:
2026-01-09 14:38:51 +01:00
commit 44cf74a96e
15 changed files with 1645 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.18.0)
project(rubik)
add_compile_options( -g )
file (GLOB_RECURSE rubik_SOURCES CONFIGURE_DEPENDS "src/*.cc")
add_executable(rubik ${rubik_SOURCES})