diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-04-20 01:44:26 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2024-04-20 01:44:26 +0200 |
| commit | d2bd3c62408945227bb13133ad6ce270851b4872 (patch) | |
| tree | 377f322435bc3a1ebf1ef5d89f3fc74e049a8170 /src/CMakeLists.txt | |
| parent | 7601eea77247b4499d38e88ed454c3991728ce66 (diff) | |
CMake/MSVC: Fix shared library build, add to GitHub CI build
Fault was a simple typo or copy-paste error
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e4f2306cd..dfbdfa235 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -930,7 +930,7 @@ if(FLTK_BUILD_SHARED_LIBS AND MSVC) if(OPENGL_FOUND) target_link_libraries(fltk-shared PUBLIC ${OPENGL_LIBRARIES}) - target_include_directories(fltk_gl-shared PUBLIC ${OPENGL_INCLUDE_DIR} ${OPENGL_INCLUDE_DIRS}) + target_include_directories(fltk-shared PUBLIC ${OPENGL_INCLUDE_DIR} ${OPENGL_INCLUDE_DIRS}) if(OPENGL_GLU_INCLUDE_DIR) target_include_directories(fltk-shared PUBLIC ${OPENGL_GLU_INCLUDE_DIR}) endif() |
