Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ option(PYTHON_BINDINGS "Python library to use the Parameter Framework from pytho
option(C_BINDINGS "Library to use the Parameter Framework using a C API" ON)
option(FATAL_WARNINGS "Turn warnings into errors (-Werror flag)" ON)
option(NETWORKING "Set to OFF in order to stub networking code" ON)
option(CLIENT_SIMULATOR "Set to ON to enable client simulator" OFF)

include(SetVersion.cmake)

Expand Down Expand Up @@ -126,6 +127,9 @@ endif()

add_subdirectory(tools/xmlGenerator)
add_subdirectory(tools/xmlValidator)
if (CLIENT_SIMULATOR)
add_subdirectory(tools/clientSimulator)
endif()

add_subdirectory(bindings)

Expand Down