diff --git a/.gitignore b/.gitignore index 54c12dc..0c5295c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ .vs out +3rdparty +*.json \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..3a2e7b8 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "SDLFramework"] + path = SDLFramework + url = https://github.com/Lauchmelder23/SDLFramework diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f275d8..4830139 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,4 +6,5 @@ cmake_minimum_required (VERSION 3.8) project ("ComplexPlotting") # Include sub-projects. +add_subdirectory ("SDLFramework") add_subdirectory ("ComplexPlotting") diff --git a/ComplexPlotting/CMakeLists.txt b/ComplexPlotting/CMakeLists.txt index 8b5fded..bf7fa2e 100644 --- a/ComplexPlotting/CMakeLists.txt +++ b/ComplexPlotting/CMakeLists.txt @@ -3,6 +3,25 @@ # cmake_minimum_required (VERSION 3.8) -# Add source to this project's executable. -add_executable (ComplexPlotting "main.cpp") +if(WIN32) + file(GLOB SDL2_LIBRARIES + ${SDL2_INCLUDES}/*.lib + ) +else() +endif() + +# Add source to this project's executable. +add_executable (ComplexPlotting + "main.cpp" +) + +target_include_directories(ComplexPlotting PRIVATE + ${SDL2_INCLUDES} + ${CMAKE_SOURCE_DIR}/SDLFramework/src/sdlf +) + +target_link_libraries(ComplexPlotting PRIVATE + ${SDL2_LIBRARIES} + sdlf +) \ No newline at end of file diff --git a/ComplexPlotting/main.cpp b/ComplexPlotting/main.cpp index 63498a2..909ff1c 100644 --- a/ComplexPlotting/main.cpp +++ b/ComplexPlotting/main.cpp @@ -1,7 +1,21 @@ +#include +#include +#undef main + +void PrintSDLVersion() +{ + SDL_version* v = new SDL_version; + SDL_VERSION(v); + printf("Running on SDL %i.%i.%i\n", v->major, v->minor, v->patch); + + delete v; + v = nullptr; +} int main(int argc, char** argv) { - + PrintSDLVersion(); + return 0; } \ No newline at end of file diff --git a/SDLFramework b/SDLFramework new file mode 160000 index 0000000..ca91b0a --- /dev/null +++ b/SDLFramework @@ -0,0 +1 @@ +Subproject commit ca91b0aff404e1fae4ed61cfd3408688bebb0ec0