Statistics
| Branch: | Tag: | Revision:

hlrc / client / CMakeLists.txt @ 62d50515

History | View | Annotate | Download (478 Bytes)

1
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
2

    
3
PROJECT("hlrc_client")
4

    
5
SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE)
6

    
7
#options
8
OPTION(BUILD_CPP "Decide whether to build the CPP bindings." ON)
9
OPTION(BUILD_JAVA "Decide whether to build the Java bindings." ON)
10
OPTION(BUILD_PYTHON "Decide whether to build the Python bindings." ON)
11

    
12

    
13

    
14
IF(BUILD_CPP)
15
    ADD_SUBDIRECTORY(cpp)
16
ENDIF()
17

    
18
IF(BUILD_JAVA)
19
    ADD_SUBDIRECTORY(java)
20
ENDIF()
21

    
22
IF(BUILD_PYTHON)
23
    ADD_SUBDIRECTORY(python)
24
ENDIF()
25

    
26

    
27