add a parser to read the UID per user

This commit is contained in:
Sven Czarnian
2021-08-10 08:42:00 +02:00
parent 163786698c
commit 81edcdcea2
3 changed files with 148 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ SET(SOURCE_FILES
)
SET(SOURCE_CONFIG_FILES
config/FileFormat.cpp
config/IdentifierFileFormat.cpp
)
SET(SOURCE_FILES_RES
${CMAKE_BINARY_DIR}/ArrivalMANager.rc
@@ -24,6 +25,7 @@ SET(SOURCE_FILES_RES
)
SET(INCLUDE_CONFIG_FILES
${CMAKE_SOURCE_DIR}/include/aman/config/FileFormat.h
${CMAKE_SOURCE_DIR}/include/aman/config/IdentifierFileFormat.h
)
SET(INCLUDE_HELPER_FILES
${CMAKE_SOURCE_DIR}/include/aman/helper/String.h
@@ -57,6 +59,7 @@ IF(MSVC)
ENDIF()
SOURCE_GROUP("Source Files" FILES ${SOURCE_FILES})
SOURCE_GROUP("Source Files\\config" FILES ${SOURCE_CONFIG_FILES})
SOURCE_GROUP("Source Files\\res" FILES ${SOURCE_FILES_RES})
SOURCE_GROUP("Header Files\\config" FILES ${INCLUDE_CONFIG_FILES})
SOURCE_GROUP("Header Files\\helper" FILES ${INCLUDE_HELPER_FILES})