mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-06 07:07:14 -05:00
9 lines
371 B
CMake
9 lines
371 B
CMake
# Required by cmake if `uname -s` is inadaquate
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
|
SET(CMAKE_SYSTEM_VERSION 1)
|
|
|
|
# Search for programs in the build host directories
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
# For libraries and headers in the target directories
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |