I started with ogre. 2 weeks i try run ogre samples, i load this ogre-master for ogre cave , when i run sample browser with ogre.sln it works. But when i compile with cmake and run project manual (my project / sample browser ) i gave error aplication crashed
But how create own project manualy ( no run ogre.sln / Sample browser / ), How repeair this error , please help ?
I cant start learn because i not start own project/
Earlier i comiled Version 1.9 normaly and create own project with seeting in tutorial but now i cant download vs2012 express or earlier, version now is Visual Studio 2017
But Setting in tutorial is to version 1.9 In 1.10 is only:
see BuildingOgre.md for instructions how to build OGRE itself
CMake Configuration
Ogre uses CMake as its build system. It is recommended that you use it in your project as well. Then all you need is to add the following three lines to your project
1 # specify which version you need
2 find_package(OGRE 1.10 REQUIRED)
3
4 # the search paths
5 include_directories(${OGRE_INCLUDE_DIRS})
6 link_directories(${OGRE_LIBRARY_DIRS})
7
8 # copy essential config files next to our binary where OGRE autodiscovers them
9 file(COPY ${OGRE_CONFIG_DIR}/plugins.cfg ${OGRE_CONFIG_DIR}/resources.cfg
10 DESTINATION ${CMAKE_BINARY_DIR})
this not works for me , I used file wich you gave me, next i compile Bootstrap.cpp and i have this error.