We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c12d30b commit bafc812Copy full SHA for bafc812
1 file changed
source/CMakeLists.txt
@@ -7,7 +7,13 @@ file(GLOB_RECURSE SRC_FILES "*.cpp")
7
add_library(reminecraftpe-core STATIC
8
${SRC_FILES}
9
)
10
-message(STATUS "Selected Directories: ${SRC_FILES}")
+set(COUNT 0)
11
+foreach(file IN LISTS SRC_FILES)
12
+ math(EXPR COUNT "${COUNT} + 1")
13
+ file(RELATIVE_PATH rel_file ${CMAKE_CURRENT_SOURCE_DIR} ${file})
14
+ message(STATUS "[${COUNT}] ${rel_file}")
15
+endforeach()
16
+
17
target_include_directories(reminecraftpe-core PUBLIC . ..)
18
19
# RakNet
0 commit comments