duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

DuckStationBuildOptions.cmake (665B)


      1 # Renderer options.
      2 option(ENABLE_OPENGL "Build with OpenGL renderer" ON)
      3 option(ENABLE_VULKAN "Build with Vulkan renderer" ON)
      4 option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" OFF)
      5 option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
      6 option(BUILD_REGTEST "Build regression test runner" OFF)
      7 option(BUILD_TESTS "Build unit tests" OFF)
      8 
      9 if(LINUX OR BSD)
     10   option(ENABLE_X11 "Support X11 window system" ON)
     11   option(ENABLE_WAYLAND "Support Wayland window system" ON)
     12   option(ALLOW_INSTALL "Allow installation to CMAKE_INSTALL_PREFIX" OFF)
     13 endif()
     14 if(APPLE)
     15   option(SKIP_POSTPROCESS_BUNDLE "Disable bundle post-processing, including Qt additions" OFF)
     16 endif()