mirror of
https://github.com/ModOrganizer2/modorganizer-game_bethesda.git
synced 2026-07-27 14:08:44 -07:00
18 lines
345 B
CMake
18 lines
345 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# TODO: clean include directives
|
|
set(MO2_CMAKE_DEPRECATED_UIBASE_INCLUDE ON)
|
|
|
|
project(game_bethesda)
|
|
|
|
find_package(mo2-cmake CONFIG REQUIRED)
|
|
find_package(Qt6 COMPONENTS Widgets)
|
|
|
|
add_subdirectory(src/gamebryo)
|
|
add_subdirectory(src/creation)
|
|
|
|
mo2_add_subdirectories(
|
|
FOLDER games
|
|
GLOB src/games/*
|
|
)
|