This commit is contained in:
Valentino Orlandi 2022-08-17 23:36:39 +02:00
parent 22b5c97c93
commit 12d5cef1cb
Signed by: elB4RTO
GPG Key ID: 1719E976DB2D4E71
1 changed files with 8 additions and 0 deletions

View File

@ -77,6 +77,9 @@ set(PROJECT_SOURCES
tools/craphelp/craphelp.h
tools/craphelp/craphelp.cpp
tools/crapup/crapup.h
tools/crapup/crapup.cpp
resources/resources.qrc
${TS_FILES}
)
@ -115,6 +118,11 @@ find_package( ZLIB REQUIRED )
include_directories(${ZLIB_INCLUDE_DIRS})
target_link_libraries(LogDoctor PRIVATE ${ZLIB_LIBRARIES})
# Include curl
find_package( CURL REQUIRED )
include_directories(${CURL_INCLUDE_DIRS})
target_link_libraries(LogDoctor PRIVATE ${CURL_LIBRARIES})
set_target_properties(LogDoctor PROPERTIES
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}