diff options
| author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-08-29 22:16:44 +0000 | 
|---|---|---|
| committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-08-29 22:16:44 +0000 | 
| commit | 818535576c00847aef3c9e60142b5d2afa50d897 (patch) | |
| tree | 8fd1298c5a78d10b96405c95e46d52ee2e8c27ce /indra/llvfs | |
| parent | 1496c3d0eee43223ad9714b06ee94e334c730731 (diff) | |
Switch more libraries over to target_link_libraries
Diffstat (limited to 'indra/llvfs')
| -rw-r--r-- | indra/llvfs/CMakeLists.txt | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/llvfs/CMakeLists.txt b/indra/llvfs/CMakeLists.txt index 9f136f7772..c3c12efdd0 100644 --- a/indra/llvfs/CMakeLists.txt +++ b/indra/llvfs/CMakeLists.txt @@ -56,3 +56,9 @@ set_source_files_properties(${llvfs_HEADER_FILES}  list(APPEND llvfs_SOURCE_FILES ${llvfs_HEADER_FILES})  add_library (llvfs ${llvfs_SOURCE_FILES}) + +if (DARWIN) +  include(CMakeFindFrameworks) +  find_library(CARBON_LIBRARY Carbon) +  target_link_libraries(llvfs ${CARBON_LIBRARY}) +endif (DARWIN) | 
