Included Graphics libraries
This commit is contained in:
parent
fdd4e79734
commit
69f97c8621
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,4 @@
|
|||
.vs
|
||||
out
|
||||
3rdparty
|
||||
*.json
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "SDLFramework"]
|
||||
path = SDLFramework
|
||||
url = https://github.com/Lauchmelder23/SDLFramework
|
|
@ -6,4 +6,5 @@ cmake_minimum_required (VERSION 3.8)
|
|||
project ("ComplexPlotting")
|
||||
|
||||
# Include sub-projects.
|
||||
add_subdirectory ("SDLFramework")
|
||||
add_subdirectory ("ComplexPlotting")
|
||||
|
|
|
@ -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
|
||||
)
|
|
@ -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
1
SDLFramework
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit ca91b0aff404e1fae4ed61cfd3408688bebb0ec0
|
Loading…
Reference in a new issue