Fix build error on macOS after recent changes for file delete

This commit is contained in:
Brecht Van Lommel 2019-10-10 18:30:22 +02:00
parent f3d9ea0a8a
commit 91a26ee745
1 changed files with 4 additions and 0 deletions

View File

@ -32,6 +32,10 @@ set(SRC
add_cc_flags_custom_test(msgfmt)
if(APPLE)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${PLATFORM_LINKFLAGS}")
endif()
add_executable(msgfmt ${SRC})
target_link_libraries(msgfmt bf_blenlib)