summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2025-12-18 23:06:45 +0100
committernasr <nsrddyn@gmail.com>2025-12-18 23:06:45 +0100
commit604cf259912c812f1ab6b92e212bfe86b3b5fb4e (patch)
tree8a9c8d863acd22294be47340c317a830fa25aa05 /CMakeLists.txt
parentab3168232c68681470f030fa50071cf44321c66a (diff)
refactor: removed cmake and replaced it with a build script
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
deleted file mode 100644
index cc7db86..0000000
--- a/CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-cmake_minimum_required(VERSION 3.0)
-project(Tetris)
-
-# Use GCC as the compiler (if preferred)
-set(CMAKE_C_COMPILER gcc)
-
-# Include Raylib headers and link libraries
-include_directories(/opt/homebrew/Cellar/raylib/5.5/include)
-link_directories(/opt/homebrew/Cellar/raylib/5.5/lib)
-
-# Add your source file
-add_executable(tetris TETRIS.c)
-
-# Link Raylib
-target_link_libraries(tetris raylib)