Skip to content

Commit

Permalink
correct syntax error in libstudxml CMakeLists, closes #136
Browse files Browse the repository at this point in the history
  • Loading branch information
tfussell committed Mar 21, 2017
1 parent b914b06 commit f6626e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/libstudxml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ target_link_libraries(libstudxml PRIVATE ${EXPAT_LIBRARIES})
# Prevent warning C4996 caused by strcpy, strncpy, sprintf in genx
# TODO: would it be better to define this only in genx.c?
if(MSVC)
target_compile_definition(libstudxml PRIVATE _CRT_SECURE_NO_WARNINGS=1)
target_compile_definitions(libstudxml PRIVATE _CRT_SECURE_NO_WARNINGS=1)
endif()

# Build with -fPIC when xlnt is a shared library
Expand Down

0 comments on commit f6626e5

Please sign in to comment.