Skip to content

Commit

Permalink
don't build gwt for monitor-only config
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Jul 23, 2013
1 parent 756856f commit 08c762a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/CMakeLists.txt
Expand Up @@ -15,9 +15,12 @@
cmake_minimum_required(VERSION 2.6)

# don't add gwt for special 64-bit binary builds on windows (since
# we've already got it from the 32-bit build) or for development mode
# (since we'll want to build it incrementally using superdevmode)
if ( (NOT RSTUDIO_SESSION_WIN64) AND (NOT RSTUDIO_DEVELOPMENT) )
# we've already got it from the 32-bit build), for development mode
# (since we'll want to build it incrementally using superdevmode),
# or when building monitor only
if ( (NOT RSTUDIO_SESSION_WIN64) AND
(NOT RSTUDIO_DEVELOPMENT) AND
(NOT RSTUDIO_CONFIG_MONITOR_ONLY) )
add_subdirectory(gwt)
endif()

Expand Down

0 comments on commit 08c762a

Please sign in to comment.