summaryrefslogtreecommitdiff
path: root/DefineOptions.cmake
blob: 7564a22a4789905cf40ec4d80ef08dace5fec4d5 (plain)
1
2
3
4
5
6
7
option(WITH_STATIC_LIB "Build with a static library" OFF)
option(WITH_CMOCKERY_SUPPORT "Install a cmockery header" OFF)
option(UNIT_TESTING "Build with unit testing" OFF)

if (UNIT_TESTING)
    set(WITH_STATIC_LIB ON)
endif()