From 358072eb2bd41a80f010a841030b43a274d80c40 Mon Sep 17 00:00:00 2001 From: graapka99558 Date: Sun, 2 Nov 2025 19:04:33 +0100 Subject: [PATCH] CMake angepasst - Raylib eingebunden --- .idea/.gitignore | 8 ++++ .idea/.name | 1 + .idea/Prog3.iml | 2 + .idea/editor.xml | 101 ++++++++++++++++++++++++++++++++++++++++++++++ .idea/misc.xml | 7 ++++ .idea/modules.xml | 8 ++++ .idea/vcs.xml | 6 +++ CMakeLists.txt | 1 + 8 files changed, 134 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/Prog3.iml create mode 100644 .idea/editor.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..ed8527b --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +Prog3B \ No newline at end of file diff --git a/.idea/Prog3.iml b/.idea/Prog3.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/Prog3.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/editor.xml b/.idea/editor.xml new file mode 100644 index 0000000..ca29dcc --- /dev/null +++ b/.idea/editor.xml @@ -0,0 +1,101 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0b76fe5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..3ea5936 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 9a2a42a..bf517d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,6 +19,7 @@ set(SRC_FILES set(INCLUDE_DIRS ${CMAKE_CURRENT_LIST_DIR}/linux + ${CMAKE_CURRENT_LIST_DIR}/raylib # ← Hier wird der Header-Pfad ergänzt ) add_executable(${EXECUTABLE_NAME} ${SRC_FILES})