update linux config

This commit is contained in:
ndonkoHenri 2026-01-24 09:11:05 +01:00
parent 93f96bae9e
commit e526e63416
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,7 @@
"project_name": "", "project_name": "",
"project_name_slug": "", "project_name_slug": "",
"project_description": "", "project_description": "",
"artifact_name": "{{ cookiecutter.project_name }}",
"product_name": "{{ cookiecutter.project_name }}", "product_name": "{{ cookiecutter.project_name }}",
"org_name": "{{ cookiecutter.org_name if 'org_name' in cookiecutter else 'com.flet' }}", "org_name": "{{ cookiecutter.org_name if 'org_name' in cookiecutter else 'com.flet' }}",
"company_name": "Your Company", "company_name": "Your Company",

View File

@ -2,8 +2,8 @@
cmake_minimum_required(VERSION 3.10) cmake_minimum_required(VERSION 3.10)
project(runner LANGUAGES CXX) project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change # The name of the application target. The on-disk name is set as OUTPUT_NAME to keep
# the on-disk name of your application. # Flutter tooling behavior intact.
set(BINARY_NAME "{{ cookiecutter.project_name }}") set(BINARY_NAME "{{ cookiecutter.project_name }}")
# The unique GTK application identifier for this application. See: # The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID # https://wiki.gnome.org/HowDoI/ChooseApplicationID
@ -84,6 +84,7 @@ add_dependencies(${BINARY_NAME} flutter_assemble)
# the default top-level location. # the default top-level location.
set_target_properties(${BINARY_NAME} set_target_properties(${BINARY_NAME}
PROPERTIES PROPERTIES
OUTPUT_NAME "{{ cookiecutter.artifact_name }}"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run"
) )