1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 22:45:34 +00:00

Fixed a bug in the CMake file that prevented the plugins.cfg from being copied on Linux.

This commit is contained in:
Pieter van der Kloet 2011-03-28 20:25:55 +02:00
parent 833a61dd82
commit 6e1e3b797c

View file

@ -294,7 +294,7 @@ if (WIN32)
configure_file(${OpenMW_SOURCE_DIR}/files/plugins.cfg.win32
"${OpenMW_BINARY_DIR}/plugins.cfg" COPYONLY)
endif (WIN32)
if (LINUX)
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
configure_file(${OpenMW_SOURCE_DIR}/files/plugins.cfg.linux
"${OpenMW_BINARY_DIR}/plugins.cfg")
endif (LINUX)