Fix up Windows build for the SBUnixSignals addition.

Change by Zachary Turner.

llvm-svn: 211635
GitOrigin-RevId: 5d1b9c73860c2c008772de1ded6d86792c4258fa
diff --git a/source/API/CMakeLists.txt b/source/API/CMakeLists.txt
index b903b4e..d58096d 100644
--- a/source/API/CMakeLists.txt
+++ b/source/API/CMakeLists.txt
@@ -1,5 +1,8 @@
 set(LLVM_NO_RTTI 1)
 
+# On Windows, the file list for liblldb is maintained in source\CMakeLists.txt.
+# When adding a file to this list, do not forget to add it to the other list as
+# well (where appropriate).
 add_lldb_library(lldbAPI
   SBAddress.cpp
   SBBlock.cpp
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt
index 62f00de..d5241be 100644
--- a/source/CMakeLists.txt
+++ b/source/CMakeLists.txt
@@ -208,6 +208,9 @@
 # Need to export the API in the liblldb.dll for Windows
 # The lldbAPI source files are added directly in liblldb
 if ( CMAKE_SYSTEM_NAME MATCHES "Windows" )
+# On Non-Windows, the corresponding file list is maintained in
+# source\API\CMakeLists.txt.  When editing this list, do not forget to make a
+# corresponding change in that file as well (when appropriate).
 add_lldb_library(liblldb
   lldb.cpp
   lldb-log.cpp
@@ -258,6 +261,7 @@
   API/SBTypeNameSpecifier.cpp
   API/SBTypeSummary.cpp
   API/SBTypeSynthetic.cpp
+  API/SBUnixSignals.cpp
   API/SBValue.cpp
   API/SBValueList.cpp
   API/SBWatchpoint.cpp