mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
14 lines
278 B
CMake
14 lines
278 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
set(MO2_CMAKE_DEPRECATED_UIBASE_INCLUDE ON)
|
|
|
|
project(bsa_packer)
|
|
|
|
add_subdirectory(src)
|
|
|
|
set(BUILD_TESTING ${BUILD_TESTING} CACHE BOOL "build tests for bsapacker plugin")
|
|
if(BUILD_TESTING)
|
|
enable_testing()
|
|
add_subdirectory(tests)
|
|
endif()
|