From 5e2653998c339e660d50c517903b487a2c1b7c9c Mon Sep 17 00:00:00 2001 From: warmist Date: Fri, 27 Jun 2014 10:22:06 +0300 Subject: [PATCH] Added rendermax to supported It's stable enough and quite nice. Also one person missed it in release. --- plugins/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 2f6d7fd3b..a50d97b58 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -168,6 +168,8 @@ if (BUILD_SUPPORTED) DFHACK_PLUGIN(building-hacks building-hacks.cpp LINK_LIBRARIES lua) DFHACK_PLUGIN(embark-tools embark-tools.cpp) DFHACK_PLUGIN(petcapRemover petcapRemover.cpp) + + add_subdirectory(rendermax) endif() # this is the skeleton plugin. If you want to make your own, make a copy and then change it @@ -175,7 +177,3 @@ OPTION(BUILD_SKELETON "Build the skeleton plugin." OFF) if(BUILD_SKELETON) add_subdirectory(skeleton) endif() -OPTION(BUILD_RENDERMAX "Build the rendermax alt-renderers plugin." OFF) -if(BUILD_RENDERMAX) - add_subdirectory(rendermax) -endif()