From 5d1b9c73860c2c008772de1ded6d86792c4258fa Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Tue, 24 Jun 2014 21:38:31 +0000 Subject: [PATCH] Fix up Windows build for the SBUnixSignals addition. Change by Zachary Turner. llvm-svn: 211635 --- lldb/source/API/CMakeLists.txt | 3 +++ lldb/source/CMakeLists.txt | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/lldb/source/API/CMakeLists.txt b/lldb/source/API/CMakeLists.txt index b903b4e..d58096d 100644 --- a/lldb/source/API/CMakeLists.txt +++ b/lldb/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/lldb/source/CMakeLists.txt b/lldb/source/CMakeLists.txt index 62f00de..d5241be 100644 --- a/lldb/source/CMakeLists.txt +++ b/lldb/source/CMakeLists.txt @@ -208,6 +208,9 @@ endif() # 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 @@ add_lldb_library(liblldb API/SBTypeNameSpecifier.cpp API/SBTypeSummary.cpp API/SBTypeSynthetic.cpp + API/SBUnixSignals.cpp API/SBValue.cpp API/SBValueList.cpp API/SBWatchpoint.cpp -- 2.7.4