mirror of https://github.com/Chlumsky/msdfgen.git
Merge pull request #49 from ckohnert/cmake
Add headers that were missed so they are included in IDE projects.
This commit is contained in:
commit
ea5ae7df10
|
|
@ -50,6 +50,7 @@ endfunction(folderize_sources)
|
||||||
|
|
||||||
file(GLOB_RECURSE msdfgen_HEADERS
|
file(GLOB_RECURSE msdfgen_HEADERS
|
||||||
"core/*.h"
|
"core/*.h"
|
||||||
|
"core/*.hpp"
|
||||||
"lib/*.h"
|
"lib/*.h"
|
||||||
"ext/*.h"
|
"ext/*.h"
|
||||||
"include/*.h"
|
"include/*.h"
|
||||||
|
|
@ -74,6 +75,6 @@ target_link_libraries(lib_msdfgen ${FREETYPE_LIBRARIES})
|
||||||
|
|
||||||
# Build the executable
|
# 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_compile_definitions(msdfgen PRIVATE MSDFGEN_STANDALONE)
|
||||||
target_link_libraries(msdfgen lib_msdfgen)
|
target_link_libraries(msdfgen lib_msdfgen)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue