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:
parent
0fdacc87f6
commit
e689c710e4
@ -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}/)
|
||||
|
Loading…
x
Reference in New Issue
Block a user