File: remove_bootstrap_tutorial.diff

package info (click to toggle)
ogre-1.12 1.12.10%2Bdfsg2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,248 kB
  • sloc: cpp: 296,806; ansic: 46,900; lex: 3,682; yacc: 1,589; python: 1,297; makefile: 76; sh: 5
file content (20 lines) | stat: -rw-r--r-- 852 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Sample/Tutorial/bootstrap.cpp is missing a license header and was excluded
Author: Simon Schmeisser <s.schmeisser@gmx.net>
Last-Update: 2020-12-29
Forwarded: https://github.com/OGRECave/ogre/commit/8854042f7a980a70a73d0f9f37ddc2e1cc1cd05f
--- a/Samples/Tutorials/CMakeLists.txt
+++ b/Samples/Tutorials/CMakeLists.txt
@@ -12,10 +12,11 @@
 file(COPY ${OGRE_CONFIG_DIR}/resources.cfg DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
 
 # add the source files as usual
-add_executable(0_Bootstrap Bootstrap.cpp)
+#missing license header
+#add_executable(0_Bootstrap Bootstrap.cpp)
 
 # this also sets the includes and pulls third party dependencies
-target_link_libraries(0_Bootstrap OgreBites OgreRTShaderSystem)
+#target_link_libraries(0_Bootstrap OgreBites OgreRTShaderSystem)
 ## [discover_ogre]
 
 add_executable(1_FirstScene BasicTutorial1.cpp)