From c125d4179320d9aac98056f29cb484f0f1fbbd38 Mon Sep 17 00:00:00 2001 From: "Matias N. Goldberg" Date: Tue, 15 Oct 2024 19:23:40 -0300 Subject: [PATCH] Default OGRE_USE_NEW_PROJECT_NAME = ON for 4.0 As per documentation, OGRE_USE_NEW_PROJECT_NAME defaults to off in 3.0 and defaults to on in 4.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dacb857854..9828a8056d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ endif () # OgreAddTargets and OgreConfigTargets make use of OGRE_NEXT and OGRE_NEXT_PREFIX option(OGRE_USE_NEW_PROJECT_NAME "Libraries containing Ogre name will be called OgreNext, e.g. 'OgreNext.dll' instead of 'Ogre.dll'" - FALSE) + TRUE) if( OGRE_USE_NEW_PROJECT_NAME ) set( OGRE_NEXT "OgreNext" )