diff options
author | numzero <numzer0@yandex.ru> | 2023-03-25 11:26:52 +0300 |
---|---|---|
committer | numzero <numzer0@yandex.ru> | 2023-03-25 11:26:52 +0300 |
commit | 4dda28450f340b27c9b5a5111113b0537059d217 (patch) | |
tree | 1a05c3023d63a9a1709774bc1f86d35f063447d9 /source | |
parent | 219b7fd7d2d884fddb4c12723361c3c342fb9294 (diff) | |
download | irrlicht-4dda28450f340b27c9b5a5111113b0537059d217.tar.xz |
Provide sources as private to IRRVIDEOOBJ
Diffstat (limited to 'source')
-rw-r--r-- | source/Irrlicht/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Irrlicht/CMakeLists.txt b/source/Irrlicht/CMakeLists.txt index ad11dd4..6d87069 100644 --- a/source/Irrlicht/CMakeLists.txt +++ b/source/Irrlicht/CMakeLists.txt @@ -377,7 +377,7 @@ add_library(IRRVIDEOOBJ OBJECT ) if(USE_SDLGL) - target_sources(IRRVIDEOOBJ PUBLIC + target_sources(IRRVIDEOOBJ PRIVATE OpenGL/Driver.cpp OpenGL/ExtensionHandler.cpp OpenGL/FixedPipelineRenderer.cpp @@ -387,17 +387,17 @@ if(USE_SDLGL) endif() if(USE_SDLGL3) - target_sources(IRRVIDEOOBJ PUBLIC + target_sources(IRRVIDEOOBJ PRIVATE OpenGL3/Driver.cpp ) endif() if(USE_SDLGLES2) - target_sources(IRRVIDEOOBJ PUBLIC + target_sources(IRRVIDEOOBJ PRIVATE OpenGLES2/Driver.cpp ) else() - target_sources(IRRVIDEOOBJ PUBLIC + target_sources(IRRVIDEOOBJ PRIVATE COGLES2Driver.cpp COGLES2ExtensionHandler.cpp COGLES2FixedPipelineRenderer.cpp |