DefineOptions.cmake 440 B

12345678910111213141516
  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. set(NUM_HEAPS '0')
  6. option(P2012 "Build for P2012 runtime" OFF)
  7. if (P2012)
  8. set(HAVE_LOCKS OFF)
  9. set(WITH_MEMORY_SPACE_AWARENESS ON)
  10. set(WITH_STATIC_LIB ON)
  11. set(NUM_HEAPS '0')
  12. endif (P2012)