Merge pull request #194 from BetsyMcPhail/msvc-path

fix(CMakeLists.txt): fix path to stdint.h
This commit is contained in:
Nikos Ftylitakis 2021-04-20 14:49:26 +03:00 committed by GitHub
commit decf28bef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ SET(SOURCES
) )
if(MSVC) if(MSVC)
LIST(APPEND SOURCES ${WIN32_DIR}/zxing/msvc/stdint.h) LIST(APPEND SOURCES ${WIN32_DIR}/msvc/stdint.h)
endif(MSVC) endif(MSVC)
target_sources(qzxing PRIVATE ${SOURCES}) target_sources(qzxing PRIVATE ${SOURCES})