mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 01:36:57 +00:00
13 lines
360 B
CMake
13 lines
360 B
CMake
# Copyright 2025 Xenon Emulator Project. All rights reserved.
|
|
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
set(BUILD_TESTING OFF)
|
|
set_directory_properties(PROPERTIES EXCLUDE_FROM_ALL ON SYSTEM ON)
|
|
|
|
# Set CMP0069 policy to "NEW" for building external targets with LTO enabled
|
|
set(CMAKE_POLICY_DEFAULT_CMP0069 NEW)
|
|
|
|
# fmt
|
|
if (NOT TARGET fmt::fmt)
|
|
add_subdirectory(fmt)
|
|
endif()
|