Add headers that were missed so they are included in IDE projects.

This commit is contained in:
Christopher Kohnert 2017-06-08 09:31:00 -07:00
parent 746767a62b
commit 6f67a32529
1 changed files with 2 additions and 1 deletions

View File

@ -50,6 +50,7 @@ endfunction(folderize_sources)
file(GLOB_RECURSE msdfgen_HEADERS
"core/*.h"
"core/*.hpp"
"lib/*.h"
"ext/*.h"
"include/*.h"
@ -74,6 +75,6 @@ target_link_libraries(lib_msdfgen ${FREETYPE_LIBRARIES})
# Build the executable
add_executable(msdfgen main.cpp)
add_executable(msdfgen main.cpp msdfgen.h msdfgen-ext.h)
target_compile_definitions(msdfgen PRIVATE MSDFGEN_STANDALONE)
target_link_libraries(msdfgen lib_msdfgen)