Included Graphics libraries

This commit is contained in:
Robert 2020-08-18 14:11:30 +02:00
parent fdd4e79734
commit 69f97c8621
6 changed files with 43 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
.vs
out
3rdparty
*.json

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "SDLFramework"]
path = SDLFramework
url = https://github.com/Lauchmelder23/SDLFramework

View file

@ -6,4 +6,5 @@ cmake_minimum_required (VERSION 3.8)
project ("ComplexPlotting")
# Include sub-projects.
add_subdirectory ("SDLFramework")
add_subdirectory ("ComplexPlotting")

View file

@ -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
)

View file

@ -1,7 +1,21 @@
#include <stdio.h>
#include <SDL.h>
#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;
}

1
SDLFramework Submodule

@ -0,0 +1 @@
Subproject commit ca91b0aff404e1fae4ed61cfd3408688bebb0ec0