-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first alpha release of kaltracker. more commits to follow after this one
- Loading branch information
0 parents
commit 01ac4bb
Showing
88 changed files
with
5,953 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
cmake_minimum_required(VERSION 3.0.0) | ||
project(kaltracker C CXX) | ||
|
||
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") | ||
|
||
find_package(Qt5Core) | ||
find_package(Qt5Qml) | ||
find_package(Qt5Quick) | ||
|
||
# Automatically create moc files | ||
set(CMAKE_AUTOMOC ON) | ||
|
||
# Components PATH | ||
execute_process( | ||
COMMAND dpkg-architecture -qDEB_HOST_MULTIARCH | ||
OUTPUT_VARIABLE ARCH_TRIPLET | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
|
||
set(QT_IMPORTS_DIR "lib/${ARCH_TRIPLET}") | ||
|
||
set(PROJECT_NAME "kaltracker") | ||
set(FULL_PROJECT_NAME "kaltracker.ivoxavier") | ||
set(CMAKE_INSTALL_PREFIX /) | ||
set(DATA_DIR /) | ||
set(DESKTOP_FILE_NAME ${PROJECT_NAME}.desktop) | ||
|
||
# This command figures out the target architecture for use in the manifest file | ||
# Either via the environment variable ARCH (set by Clickable) or dpkg | ||
if(DEFINED ENV{ARCH}) | ||
set(CLICK_ARCH "$ENV{ARCH}") | ||
else() | ||
execute_process( | ||
COMMAND dpkg-architecture -qDEB_HOST_ARCH | ||
OUTPUT_VARIABLE CLICK_ARCH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
endif() | ||
|
||
configure_file(manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/manifest.json) | ||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/manifest.json DESTINATION ${CMAKE_INSTALL_PREFIX}) | ||
install(FILES ${PROJECT_NAME}.apparmor DESTINATION ${DATA_DIR}) | ||
install(DIRECTORY assets DESTINATION ${DATA_DIR}) | ||
|
||
install(DIRECTORY qml DESTINATION ${DATA_DIR}) | ||
|
||
# Translations | ||
file(GLOB_RECURSE I18N_SRC_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/po qml/*.qml qml/*.js) | ||
list(APPEND I18N_SRC_FILES ${DESKTOP_FILE_NAME}.in.h) | ||
|
||
find_program(INTLTOOL_MERGE intltool-merge) | ||
if(NOT INTLTOOL_MERGE) | ||
message(FATAL_ERROR "Could not find intltool-merge, please install the intltool package") | ||
endif() | ||
find_program(INTLTOOL_EXTRACT intltool-extract) | ||
if(NOT INTLTOOL_EXTRACT) | ||
message(FATAL_ERROR "Could not find intltool-extract, please install the intltool package") | ||
endif() | ||
|
||
add_custom_target(${DESKTOP_FILE_NAME} ALL | ||
COMMENT "Merging translations into ${DESKTOP_FILE_NAME}..." | ||
COMMAND LC_ALL=C ${INTLTOOL_MERGE} -d -u ${CMAKE_SOURCE_DIR}/po ${CMAKE_SOURCE_DIR}/${DESKTOP_FILE_NAME}.in ${DESKTOP_FILE_NAME} | ||
COMMAND sed -i 's/${PROJECT_NAME}-//g' ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE_NAME} | ||
) | ||
|
||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE_NAME} DESTINATION ${DATA_DIR}) | ||
|
||
add_subdirectory(po) | ||
|
||
# Make source files visible in qtcreator | ||
file(GLOB_RECURSE PROJECT_SRC_FILES | ||
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} | ||
qml/*.qml | ||
qml/*.js | ||
src/* | ||
*.json | ||
*.json.in | ||
*.apparmor | ||
*.desktop.in | ||
) | ||
|
||
add_custom_target(${PROJECT_NAME}_FILES ALL SOURCES ${PROJECT_SRC_FILES}) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# kaltracker | ||
Stores your food and drink ingestion |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.