mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 13:27:17 +01:00
[i18n] add cmake build
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
7ed440ba75
commit
919bf4e144
|
@ -33,10 +33,12 @@ target_architecture(ARCHITECTURE)
|
|||
|
||||
set(LIBI2PD_SRC_DIR ../libi2pd)
|
||||
set(LIBI2PD_CLIENT_SRC_DIR ../libi2pd_client)
|
||||
set(LANG_SRC_DIR ../i18n)
|
||||
set(DAEMON_SRC_DIR ../daemon)
|
||||
|
||||
include_directories(${LIBI2PD_SRC_DIR})
|
||||
include_directories(${LIBI2PD_CLIENT_SRC_DIR})
|
||||
include_directories(${LANG_SRC_DIR})
|
||||
include_directories(${DAEMON_SRC_DIR})
|
||||
|
||||
set(LIBI2PD_SRC
|
||||
|
@ -126,6 +128,11 @@ if(WITH_LIBRARY)
|
|||
COMPONENT Libraries)
|
||||
endif()
|
||||
|
||||
set(LANG_SRC
|
||||
"${LANG_SRC_DIR}/English.cpp"
|
||||
"${LANG_SRC_DIR}/Russian.cpp"
|
||||
)
|
||||
|
||||
set(DAEMON_SRC
|
||||
"${DAEMON_SRC_DIR}/Daemon.cpp"
|
||||
"${DAEMON_SRC_DIR}/HTTPServer.cpp"
|
||||
|
@ -321,7 +328,7 @@ message(STATUS "---------------------------------------")
|
|||
include(GNUInstallDirs)
|
||||
|
||||
if(WITH_BINARY)
|
||||
add_executable("${PROJECT_NAME}" ${DAEMON_SRC})
|
||||
add_executable("${PROJECT_NAME}" ${LANG_SRC} ${DAEMON_SRC})
|
||||
|
||||
if(WITH_STATIC)
|
||||
set_target_properties("${PROJECT_NAME}" PROPERTIES LINK_FLAGS "-static")
|
||||
|
|
Loading…
Reference in a new issue