Skip to content

Commit 2f9c552

Browse files
committed
move resources.inc to resources.inc.h so cmake knows how to handle it
1 parent 78ea54f commit 2f9c552

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
examples/protonect/include/libfreenect2/config.h
33

44
# generated resource file
5-
examples/protonect/src/resources.inc
5+
examples/protonect/src/resources.inc.h
66
examples/protonect/build
77

88
# Dependency folders

examples/protonect/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ INCLUDE_DIRECTORIES(
5454

5555
LINK_DIRECTORIES(${LibUSB_LIBRARY_DIRS})
5656

57-
SET(RESOURCES_INC_FILE "${MY_DIR}/src/resources.inc")
57+
SET(RESOURCES_INC_FILE "${MY_DIR}/src/resources.inc.h")
5858

5959
SET(SOURCES
6060
include/libfreenect2/protocol/command.h

examples/protonect/src/resource.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct ResourceDescriptor
3737
};
3838

3939
#ifdef RESOURCES_INC
40-
#include "resources.inc"
40+
#include "resources.inc.h"
4141
#else
4242
ResourceDescriptor resource_descriptors[] = {};
4343
#endif

0 commit comments

Comments
 (0)