Files
monitarr/cmake/os.cmake
Scott E. Graves 586f4cb036
All checks were successful
Public/monitarr/pipeline/head This commit looks good
updated build system
2025-08-01 16:17:38 -05:00

12 lines
354 B
CMake

if(MSVC)
message(FATAL_ERROR "MSVC will not be supported")
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
message(FATAL_ERROR "FreeBSD is not currently supported")
endif()
if(PROJECT_REQUIRE_ALPINE AND NOT PROJECT_IS_ALPINE AND PROJECT_IS_MINGW AND PROJECT_IS_MINGW_UNIX)
message(FATAL_ERROR "Project requires Alpine Linux to build")
endif()