include console targets in all for PR/prod

This commit is contained in:
Stephen Birarda 2016-01-18 10:23:07 -08:00
parent d4597f9e8b
commit f9c84f0913

View file

@ -51,6 +51,6 @@ elseif (WIN32)
optional_win_executable_signing()
endif()
if (NOT PR_BUILD AND NOT PRODUCTION_BUILD)
set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE)
if (PR_BUILD OR PRODUCTION_BUILD)
set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL FALSE EXCLUDE_FROM_DEFAULT_BUILD FALSE)
endif ()