Merge pull request #666 from google/cmake_typo_fix

Fix typo in CMake macro draco_add_executable()
This commit is contained in:
Tom Finegan 2020-12-17 13:29:05 -08:00 committed by GitHub
commit 8f9ebcdb9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,7 @@ macro(draco_add_executable)
endif()
if(BUILD_SHARED_LIBS AND (MSVC OR WIN32))
target_compile_definitions(${lib_NAME} PRIVATE "DRACO_BUILDING_DLL=0")
target_compile_definitions(${exe_NAME} PRIVATE "DRACO_BUILDING_DLL=0")
endif()
if(exe_LIB_DEPS)