Mercurial > hg > orthanc
comparison Resources/CMake/OrthancFrameworkConfiguration.cmake @ 2406:f0cfacd0c9b8
Orthanc framework: ORTHANC_SANDBOXED parameter
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 20 Sep 2017 16:28:27 +0200 |
parents | e6af2c5cd0f1 |
children | 5edec967055e |
comparison
equal
deleted
inserted
replaced
2405:85a22aad7dfe | 2406:f0cfacd0c9b8 |
---|---|
400 -DORTHANC_ENABLE_BASE64=1 | 400 -DORTHANC_ENABLE_BASE64=1 |
401 -DORTHANC_ENABLE_LOGGING=1 | 401 -DORTHANC_ENABLE_LOGGING=1 |
402 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 | 402 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 |
403 -DORTHANC_ENABLE_MD5=1 | 403 -DORTHANC_ENABLE_MD5=1 |
404 -DORTHANC_MAXIMUM_TAG_LENGTH=256 | 404 -DORTHANC_MAXIMUM_TAG_LENGTH=256 |
405 -DORTHANC_SANDBOXED=0 | |
406 -DORTHANC_VERSION="${ORTHANC_VERSION}" | 405 -DORTHANC_VERSION="${ORTHANC_VERSION}" |
407 ) | 406 ) |
407 | |
408 | |
409 if (ORTHANC_SANDBOXED) | |
410 add_definitions(-DORTHANC_SANDBOXED=1) | |
411 else() | |
412 add_definitions(-DORTHANC_SANDBOXED=0) | |
413 endif() | |
408 | 414 |
409 | 415 |
410 if (HAS_EMBEDDED_RESOURCES) | 416 if (HAS_EMBEDDED_RESOURCES) |
411 add_definitions(-DORTHANC_HAS_EMBEDDED_RESOURCES=1) | 417 add_definitions(-DORTHANC_HAS_EMBEDDED_RESOURCES=1) |
412 | 418 |