add an helper class to process strings

This commit is contained in:
Sven Czarnian
2021-08-10 08:39:34 +02:00
parent 557c781fa6
commit 4de1e2fc43
2 changed files with 91 additions and 0 deletions

View File

@@ -19,12 +19,16 @@ SET(SOURCE_FILES_RES
${CMAKE_SOURCE_DIR}/res/resource.h
${CMAKE_SOURCE_DIR}/res/targetver.h
)
SET(INCLUDE_HELPER_FILES
${CMAKE_SOURCE_DIR}/include/aman/helper/String.h
)
# define the plug in
ADD_LIBRARY(
ArrivalMANager SHARED
${SOURCE_FILES_RES}
${SOURCE_FILES}
${INCLUDE_HELPER_FILES}
)
# define the dependencies
@@ -46,3 +50,4 @@ ENDIF()
SOURCE_GROUP("Source Files" FILES ${SOURCE_FILES})
SOURCE_GROUP("Source Files\\res" FILES ${SOURCE_FILES_RES})
SOURCE_GROUP("Header Files\\helper" FILES ${INCLUDE_HELPER_FILES})