diff options
author | Shauren <none@none> | 2010-08-12 13:35:00 +0200 |
---|---|---|
committer | Shauren <none@none> | 2010-08-12 13:35:00 +0200 |
commit | ce5cf139f7d77af2e55a105713d5505020e4aac3 (patch) | |
tree | e3f42848b70b0311b34fed485f719d906c4a9bf9 | |
parent | 898d57f09b5c07ee234e4287384427fedb9228a8 (diff) |
Buildsystem: compile libmpq only with TOOLS
--HG--
branch : trunk
-rw-r--r-- | externals/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 5d3a6684e03..12b5e44de51 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -22,4 +22,7 @@ endif() add_subdirectory(g3dlite) add_subdirectory(sockets) add_subdirectory(gsoap) -add_subdirectory(libmpq) + +if(TOOLS) + add_subdirectory(libmpq) +endif() |