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

CMakeLists.txt (436B)


      1 add_subdirectory(common)
      2 add_subdirectory(util)
      3 add_subdirectory(core)
      4 add_subdirectory(scmversion)
      5 
      6 if(WIN32 OR APPLE)
      7   add_subdirectory(updater)
      8 endif()
      9 
     10 if(BUILD_NOGUI_FRONTEND)
     11   add_subdirectory(duckstation-nogui)
     12 endif()
     13 
     14 if(BUILD_QT_FRONTEND)
     15   add_subdirectory(duckstation-qt)
     16 endif()
     17 
     18 if(BUILD_REGTEST)
     19   add_subdirectory(duckstation-regtest)
     20 endif()
     21 
     22 if(BUILD_TESTS)
     23   add_subdirectory(common-tests EXCLUDE_FROM_ALL)
     24 endif()