summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2011-02-16 13:55:04 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2011-02-16 13:55:04 +0000
commite12008a7187145a324a793cfed44abc380a25e91 (patch)
tree114b484272b5f3b05b7722895f093c73ea138af6 /CMakeLists.txt
parentc9bae1fd465da0bde963bd4c06c5903682f6e123 (diff)
Make sure to be able to compile index_create on UNIX. Install target
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c2137930..c2e5a9a3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -184,9 +184,9 @@ ENDIF(BUILD_JP3D)
#-----------------------------------------------------------------------------
# Build INDEXER_JPIP executables ?
OPTION(BUILD_INDEXER_JPIP "Build the INDEXER_JPIP executables" OFF)
-IF(BUILD_INDEXER_JPIP AND NOT UNIX)
+IF(BUILD_INDEXER_JPIP)
SUBDIRS(indexer_JPIP)
-ENDIF(BUILD_INDEXER_JPIP AND NOT UNIX)
+ENDIF(BUILD_INDEXER_JPIP)
#-----------------------------------------------------------------------------
# Build DOCUMENTATION ?