diff options
| author | Daniel Malea <daniel.malea@intel.com> | 2013-05-31 20:16:40 +0000 |
|---|---|---|
| committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-31 20:16:40 +0000 |
| commit | 132c4a266c19eda30f5f12dda1d91a7cc5d4ddb5 (patch) | |
| tree | 7281a7988a98bd7b5a5fc448165ee501f3ecd884 /lldb/source | |
| parent | 79371ceedf834283d093f2cc030e5f1195bddccc (diff) | |
| download | bcm5719-llvm-132c4a266c19eda30f5f12dda1d91a7cc5d4ddb5.tar.gz bcm5719-llvm-132c4a266c19eda30f5f12dda1d91a7cc5d4ddb5.zip | |
CMake FreeBSD fix: add missing Process plugin directory
Patch by Ed Maste!
llvm-svn: 183038
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/CMakeLists.txt b/lldb/source/CMakeLists.txt index 97d39dc43ce..efa7e7cf83b 100644 --- a/lldb/source/CMakeLists.txt +++ b/lldb/source/CMakeLists.txt @@ -7,6 +7,13 @@ include_directories( )
endif ()
+if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD" )
+include_directories(
+ Plugins/Process/FreeBSD
+ Plugins/Process/POSIX
+ )
+endif ()
+
add_subdirectory(API)
add_subdirectory(Breakpoint)
add_subdirectory(Commands)
|

