#------------------------------------------------------------------- # This file is part of the CMake build system for OGRE # (Object-oriented Graphics Rendering Engine) # For the latest info, see http://www.ogre3d.org/ # # The contents of this file are placed in the public domain. Feel # free to make use of it in any way you like. #------------------------------------------------------------------- # Configure XMLConverter set(HEADER_FILES include/OgreXMLMeshSerializer.h include/OgreXMLPrerequisites.h include/OgreXMLSkeletonSerializer.h ) set(SOURCE_FILES src/main.cpp src/OgreXMLMeshSerializer.cpp src/OgreXMLSkeletonSerializer.cpp ) add_executable(OgreXMLConverter ${HEADER_FILES} ${SOURCE_FILES}) target_include_directories(OgreXMLConverter PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include) target_link_libraries(OgreXMLConverter OgreMain pugixml) if (OGRE_PROJECT_FOLDERS) set_property(TARGET OgreXMLConverter PROPERTY FOLDER Tools) endif () ogre_config_tool(OgreXMLConverter)