Compare commits

...

2 Commits

Author SHA1 Message Date
279d1ea328 CMake auf ersten Stand 2025-11-02 20:57:25 +01:00
73f3813419 mein erstes Programm 2025-11-02 20:57:25 +01:00
2 changed files with 8 additions and 1 deletions

View File

@ -19,7 +19,6 @@ 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})

8
hello_world.c Normal file
View File

@ -0,0 +1,8 @@
#include <iostream>
int main()
{
std::cout << "Hello world." << std::endl;
return 0;
}