DefineOptions.cmake 400 B

1234567891011121314
  1. option(HAVE_LOCKS "Build with POSIX locking mechanisms" ON)
  2. option(WITH_EXAMPLES "Build with examples" OFF)
  3. option(WITH_MEMORY_SPACE_AWARENESS "Build with memory space awareness" OFF)
  4. option(WITH_STATIC_LIB "Build with a static library" OFF)
  5. option(P2012 "Build for P2012 runtime" OFF)
  6. if (P2012)
  7. set(HAVE_LOCKS OFF)
  8. set(WITH_MEMORY_SPACE_AWARENESS ON)
  9. set(WITH_STATIC_LIB ON)
  10. endif (P2012)