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:
Loknath Bharti 2020-04-24 17:16:18 -04:00 committed by GitHub
parent 0fdacc87f6
commit e689c710e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
add_library(raygui INTERFACE)
file(GLOB sources *.h)
set(RAYGUI_HEADERS, ${sources})
set(RAYGUI_HEADERS ${sources})
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}/)