Skip to content

Commit

Permalink
Merge pull request microsoft#3442 from sanxiyn/vlpp-linux
Browse files Browse the repository at this point in the history
[vlpp] Fix Linux build
  • Loading branch information
alexkaratarakis authored May 7, 2018
2 parents 1c49195 + ee469d5 commit 90ecc3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ports/vlpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ set(SRCS
Import/Vlpp.cpp
Import/VlppWorkflow.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
add_library(Vlpp ${SRCS})
Expand Down
2 changes: 1 addition & 1 deletion ports/vlpp/CONTROL
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
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

0 comments on commit 90ecc3c

Please sign in to comment.