aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/cmake/LLCommon.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/cmake/LLCommon.cmake')
-rw-r--r--linden/indra/cmake/LLCommon.cmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/linden/indra/cmake/LLCommon.cmake b/linden/indra/cmake/LLCommon.cmake
new file mode 100644
index 0000000..f4b251e
--- /dev/null
+++ b/linden/indra/cmake/LLCommon.cmake
@@ -0,0 +1,21 @@
1# -*- cmake -*-
2
3include(APR)
4include(Boost)
5include(EXPAT)
6include(ZLIB)
7
8set(LLCOMMON_INCLUDE_DIRS
9 ${LIBS_OPEN_DIR}/llcommon
10 ${APRUTIL_INCLUDE_DIR}
11 ${APR_INCLUDE_DIR}
12 ${Boost_INCLUDE_DIRS}
13 )
14
15set(LLCOMMON_LIBRARIES
16 llcommon
17 ${APRUTIL_LIBRARIES}
18 ${APR_LIBRARIES}
19 ${EXPAT_LIBRARIES}
20 ${ZLIB_LIBRARIES}
21 )