From f8e516efb8e7c8f34722a80bfdeca89d70d68be6 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Thu, 31 Oct 2019 09:14:52 -0700 Subject: [PATCH] Fix typos from the last commit --- screenshare/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/screenshare/CMakeLists.txt b/screenshare/CMakeLists.txt index 111001ac07..d19535b238 100644 --- a/screenshare/CMakeLists.txt +++ b/screenshare/CMakeLists.txt @@ -35,9 +35,11 @@ endif() if (PR_BUILD) # DO build the Screenshare Electron app when building the `ALL_BUILD` target. # DO build the Screenshare Electron app when a user selects "Build Solution" from within Visual Studio. - set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE) + set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL FALSE EXCLUDE_FROM_DEFAULT_BUILD FALSE) + set_target_properties(${TARGET_NAME}-npm-install PROPERTIES EXCLUDE_FROM_ALL FALSE EXCLUDE_FROM_DEFAULT_BUILD FALSE) else () # DO NOT build the Screenshare Electron app when building the `ALL_BUILD` target. # DO NOT build the Screenshare Electron app when a user selects "Build Solution" from within Visual Studio. set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE) + set_target_properties(${TARGET_NAME}-npm-install PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE) endif ()