mirror of
https://github.com/raysan5/raygui.git
synced 2026-02-03 04:39:18 -05:00
Update CMakeLists.txt (#83)
Remove comma after RAYGUI_HEADERS or make install will not install the headers because RAYGUI_HEADERS is not set. ", " is an unreported syntactic error.
This commit is contained in:
@ -1,10 +1,10 @@
|
|||||||
add_library(raygui INTERFACE)
|
add_library(raygui INTERFACE)
|
||||||
|
|
||||||
file(GLOB sources *.h)
|
file(GLOB sources *.h)
|
||||||
set(RAYGUI_HEADERS, ${sources})
|
set(RAYGUI_HEADERS ${sources})
|
||||||
|
|
||||||
install(FILES
|
install(FILES
|
||||||
${RAYGUI_HEADERS} DESTINATION include/
|
${RAYGUI_HEADERS} DESTINATION include
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(raygui INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/)
|
target_include_directories(raygui INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/)
|
||||||
Reference in New Issue
Block a user