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

pull/21/head
Pieter van der Kloet 14 years ago
parent 833a61dd82
commit 6e1e3b797c

@ -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)

Loading…
Cancel
Save