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/Programmieren_3b.iml b/.idea/Programmieren_3b.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/Programmieren_3b.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..ead1d8a --- /dev/null +++ b/.idea/editor.xml @@ -0,0 +1,248 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..79b3c94 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1e3bc79 --- /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..f3e6f94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,12 +13,12 @@ if(NOT CMAKE_BUILD_TYPE) endif() set(SRC_FILES - ${CMAKE_CURRENT_LIST_DIR}/main.cpp - ${CMAKE_CURRENT_LIST_DIR}/gamecube.cpp + src/main.cpp + src/gamecube.cpp ) set(INCLUDE_DIRS - ${CMAKE_CURRENT_LIST_DIR}/linux + ${CMAKE_CURRENT_LIST_DIR}/includes ) add_executable(${EXECUTABLE_NAME} ${SRC_FILES}) diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..40fc484 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,8 @@ +#include + +int main() +{ + std::cout << "Hello world." << std::endl; + + return 0; +} diff --git a/gamecube.h b/includes/gamecube.h similarity index 100% rename from gamecube.h rename to includes/gamecube.h diff --git a/gamematrix.h b/includes/gamematrix.h similarity index 100% rename from gamematrix.h rename to includes/gamematrix.h diff --git a/gamecube.cpp b/src/gamecube.cpp similarity index 100% rename from gamecube.cpp rename to src/gamecube.cpp diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp diff --git a/wuerfelmemory.exe b/wuerfelmemory.exe new file mode 100644 index 0000000..a8ee4cf Binary files /dev/null and b/wuerfelmemory.exe differ