mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 03:59:07 +08:00
e946273950
Migration guide: https://github.com/taocpp/PEGTL/blob/master/doc/Migration-Guide.md#version-280
13 lines
466 B
Diff
13 lines
466 B
Diff
--- CMakeLists.txt.orig 2019-04-11 10:26:38.546721500 -0500
|
|
+++ CMakeLists.txt 2019-04-11 10:27:19.863951400 -0500
|
|
@@ -34,6 +34,9 @@ add_executable(schemagen
|
|
GraphQLTree.cpp
|
|
GraphQLResponse.cpp
|
|
SchemaGenerator.cpp)
|
|
+if(MSVC)
|
|
+ set_source_files_properties(GraphQLTree.cpp PROPERTIES COMPILE_FLAGS /bigobj)
|
|
+endif()
|
|
target_link_libraries(schemagen PRIVATE taocpp::pegtl)
|
|
target_include_directories(schemagen PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/include)
|