浏览代码

be case-sensitive for config file

Carsten Teibes 10 年前
父节点
当前提交
3ed33d4341
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1
    1
      include/Render.h
  2. 0
    0
      include/config.h.in
  3. 2
    2
      src/CMakeLists.txt

+ 1
- 1
include/Render.h 查看文件

@@ -11,7 +11,7 @@
11 11
 
12 12
 #include <vector>
13 13
 
14
-#include "Config.h"
14
+#include "config.h"
15 15
 #include "math/Matrix.h"
16 16
 #include "ViewVolume.h"
17 17
 #include "World.h"

include/Config.h.in → include/config.h.in 查看文件


+ 2
- 2
src/CMakeLists.txt 查看文件

@@ -67,8 +67,8 @@ endif (SDL2_FOUND AND SDL2TTF_FOUND)
67 67
 
68 68
 # Configuration Header file
69 69
 configure_file (
70
-    "${PROJECT_SOURCE_DIR}/include/Config.h.in"
71
-    "${PROJECT_BINARY_DIR}/Config.h"
70
+    "${PROJECT_SOURCE_DIR}/include/config.h.in"
71
+    "${PROJECT_BINARY_DIR}/config.h"
72 72
 )
73 73
 
74 74
 #################################################################

正在加载...
取消
保存