diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/cmake/LLCommon.cmake | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/cmake/LLCommon.cmake')
-rw-r--r-- | linden/indra/cmake/LLCommon.cmake | 21 |
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 | |||
3 | include(APR) | ||
4 | include(Boost) | ||
5 | include(EXPAT) | ||
6 | include(ZLIB) | ||
7 | |||
8 | set(LLCOMMON_INCLUDE_DIRS | ||
9 | ${LIBS_OPEN_DIR}/llcommon | ||
10 | ${APRUTIL_INCLUDE_DIR} | ||
11 | ${APR_INCLUDE_DIR} | ||
12 | ${Boost_INCLUDE_DIRS} | ||
13 | ) | ||
14 | |||
15 | set(LLCOMMON_LIBRARIES | ||
16 | llcommon | ||
17 | ${APRUTIL_LIBRARIES} | ||
18 | ${APR_LIBRARIES} | ||
19 | ${EXPAT_LIBRARIES} | ||
20 | ${ZLIB_LIBRARIES} | ||
21 | ) | ||