We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee46a01 commit 1700a18Copy full SHA for 1700a18
2 files changed
src/libprojectM/CMakeLists.txt
@@ -191,14 +191,6 @@ if(ENABLE_INSTALL)
191
COMPONENT Devel
192
)
193
194
- if(NOT ENABLE_EMSCRIPTEN AND ENABLE_GLES)
195
- install(FILES
196
- "${PROJECTM_SOURCE_DIR}/cmake/gles/FindOpenGL.cmake"
197
- DESTINATION "${PROJECTM_LIB_DIR}/cmake/projectM4"
198
- COMPONENT Devel
199
- )
200
- endif()
201
-
202
install(EXPORT libprojectMTargets
203
FILE projectM4Targets.cmake
204
NAMESPACE libprojectM::
src/libprojectM/Renderer/PlatformLoader.hpp
@@ -45,6 +45,7 @@ class DynamicLibrary
45
inline bool IsOpen() const { return false; }
46
47
inline void* GetSymbol(const char*) const { return nullptr; }
48
+ inline void* Handle() const { return nullptr; }
49
static inline void* FindGlobalSymbol(const char*) { return nullptr; }
50
};
51
0 commit comments