-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
6,189 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libs
updated
from baf0cf to ea6696
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: \n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2023-12-01 13:45+0000\n" | ||
"POT-Creation-Date: 2023-12-07 06:05+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -17,7 +17,7 @@ msgstr "" | |
"Content-Type: text/plain; charset=CHARSET\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
||
#: /workspaces/Lithium/src/device/device_manager.cpp:161 | ||
#: /workspaces/Lithium/src/device/device_manager.cpp:162 | ||
msgid "A device with name {} already exists, please choose a different name" | ||
msgstr "" | ||
|
||
|
@@ -72,34 +72,54 @@ msgstr "" | |
msgid "Set server port to %d" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:80 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:84 | ||
msgid "Failed to load Lithium App , error : {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:97 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:120 | ||
msgid "Get config value: {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:103 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:126 | ||
msgid "Set {} to {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:301 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:344 | ||
msgid "Failed to run chai command : {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:319 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:362 | ||
msgid "Failed to run chai multi command {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:332 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:375 | ||
msgid "Failed to load chaiscript file {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:345 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:388 | ||
msgid "Failed to unload chaiscript file {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:358 | ||
#: /workspaces/Lithium/src/LithiumApp.cpp:401 | ||
msgid "Failed to run chai script {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:423 | ||
msgid "Failed to load module {} in {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:442 | ||
msgid "Failed to unload module {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:464 | ||
msgid "Failed to reload module {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:502 | ||
msgid "Failed to enable module {}" | ||
msgstr "" | ||
|
||
#: /workspaces/Lithium/src/LithiumApp.cpp:521 | ||
msgid "Failed to disable module {}" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
cmake_minimum_required(VERSION 3.15) | ||
project(tinyxml2 VERSION 9.0.0) | ||
|
||
## | ||
## Honor tinyxml2_SHARED_LIBS to match install interface | ||
## | ||
|
||
if (DEFINED tinyxml2_SHARED_LIBS) | ||
set(BUILD_SHARED_LIBS "${tinyxml2_SHARED_LIBS}") | ||
endif () | ||
|
||
## | ||
## Main library build | ||
## | ||
|
||
set(CMAKE_CXX_VISIBILITY_PRESET hidden) | ||
set(CMAKE_VISIBILITY_INLINES_HIDDEN YES) | ||
|
||
add_library(tinyxml2 tinyxml2.cpp tinyxml2.h) | ||
add_library(tinyxml2::tinyxml2 ALIAS tinyxml2) | ||
|
||
# Uncomment the following line to require C++11 (or greater) to use tinyxml2 | ||
# target_compile_features(tinyxml2 PUBLIC cxx_std_11) | ||
target_include_directories(tinyxml2 PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>") | ||
|
||
target_compile_definitions( | ||
tinyxml2 | ||
PUBLIC $<$<CONFIG:Debug>:TINYXML2_DEBUG> | ||
INTERFACE $<$<BOOL:${BUILD_SHARED_LIBS}>:TINYXML2_IMPORT> | ||
PRIVATE $<$<CXX_COMPILER_ID:MSVC>:_CRT_SECURE_NO_WARNINGS> | ||
PUBLIC _FILE_OFFSET_BITS=64 | ||
) | ||
|
||
set_target_properties( | ||
tinyxml2 | ||
PROPERTIES | ||
DEFINE_SYMBOL "TINYXML2_EXPORT" | ||
VERSION "${tinyxml2_VERSION}" | ||
SOVERSION "${tinyxml2_VERSION_MAJOR}" | ||
) | ||
|
||
## | ||
## Installation | ||
## | ||
|
||
## Standard modules | ||
include(GNUInstallDirs) | ||
include(CMakePackageConfigHelpers) | ||
|
||
## Custom locations | ||
set(tinyxml2_INSTALL_PKGCONFIGDIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig" | ||
CACHE PATH "Directory for pkgconfig files") | ||
|
||
set(tinyxml2_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/tinyxml2" | ||
CACHE STRING "Path to tinyxml2 CMake files") | ||
|
||
## CMake targets and export scripts | ||
|
||
install( | ||
TARGETS tinyxml2 EXPORT tinyxml2-targets | ||
RUNTIME COMPONENT tinyxml2_runtime | ||
LIBRARY COMPONENT tinyxml2_runtime | ||
NAMELINK_COMPONENT tinyxml2_development | ||
ARCHIVE COMPONENT tinyxml2_development | ||
INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" | ||
) | ||
|
||
# Type-specific targets | ||
|
||
if (BUILD_SHARED_LIBS) | ||
set(type shared) | ||
else () | ||
set(type static) | ||
endif () | ||
|
||
install( | ||
EXPORT tinyxml2-targets | ||
DESTINATION "${tinyxml2_INSTALL_CMAKEDIR}" | ||
NAMESPACE tinyxml2:: | ||
FILE tinyxml2-${type}-targets.cmake | ||
COMPONENT tinyxml2_development | ||
) | ||
|
||
# Auto-generated version compatibility file | ||
write_basic_package_version_file( | ||
tinyxml2-config-version.cmake | ||
COMPATIBILITY SameMajorVersion | ||
) | ||
|
||
install( | ||
FILES | ||
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/tinyxml2-config.cmake" | ||
"${CMAKE_CURRENT_BINARY_DIR}/tinyxml2-config-version.cmake" | ||
DESTINATION "${tinyxml2_INSTALL_CMAKEDIR}" | ||
COMPONENT tinyxml2_development | ||
) | ||
|
||
## Headers | ||
|
||
install( | ||
FILES tinyxml2.h | ||
TYPE INCLUDE | ||
COMPONENT tinyxml2_development | ||
) | ||
|
||
## pkg-config | ||
|
||
configure_file(cmake/tinyxml2.pc.in tinyxml2.pc.gen @ONLY) | ||
file(GENERATE OUTPUT tinyxml2.pc INPUT "${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc.gen") | ||
install( | ||
FILES "${CMAKE_CURRENT_BINARY_DIR}/tinyxml2.pc" | ||
DESTINATION "${tinyxml2_INSTALL_PKGCONFIGDIR}" | ||
COMPONENT tinyxml2_development | ||
) |
Oops, something went wrong.