Merge pull request #3442 from sanxiyn/vlpp-linux

[vlpp] Fix Linux build
This commit is contained in:
Alexander Karatarakis 2018-05-07 16:00:58 -07:00 committed by GitHub
commit 90ecc3c44d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,10 @@ set(SRCS
Import/Vlpp.cpp Import/Vlpp.cpp
Import/VlppWorkflow.cpp Import/VlppWorkflow.cpp
Import/VlppWorkflowCompiler.cpp) Import/VlppWorkflowCompiler.cpp)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
endif()
# Create and configure the target # Create and configure the target
add_library(Vlpp ${SRCS}) add_library(Vlpp ${SRCS})

View File

@ -1,3 +1,3 @@
Source: vlpp Source: vlpp
Version: 0.9.3.1 Version: 0.9.3.1-1
Description: Common C++ construction, including string operation / generic container / linq / General-LR parser generator / multithreading / reflection for C++ / etc Description: Common C++ construction, including string operation / generic container / linq / General-LR parser generator / multithreading / reflection for C++ / etc