Synchronize CMakeLists.txt with msdfgen changes.

Core library target was renamed to msdfgen-core, and msdf-atlas-gen was expecting the old target name.
This commit is contained in:
Alex Forrence 2022-01-11 14:21:58 -05:00
parent b086f93a36
commit c097d821d4
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ if (MSVC)
target_compile_definitions(msdf-atlas-gen PUBLIC _CRT_SECURE_NO_WARNINGS)
endif()
target_compile_features(msdf-atlas-gen PUBLIC cxx_std_11)
target_link_libraries(msdf-atlas-gen PUBLIC Threads::Threads msdfgen::msdfgen msdfgen::msdfgen-ext)
target_link_libraries(msdf-atlas-gen PUBLIC Threads::Threads msdfgen::msdfgen-core msdfgen::msdfgen-ext)
# TODO make these public in msdfgen so that this doesn't have to be repeated here
if(FREETYPE_WITH_PNG)