Prechádzať zdrojové kódy

Removed useless files

Rrycbarm 2 rokov pred
rodič
commit
1dc2bfcdf7
3 zmenil súbory, kde vykonal 0 pridanie a 68 odobranie
  1. 0 30
      .editorconfig
  2. 0 18
      CMakeLists.txt
  3. 0 20
      Makefile

+ 0 - 30
.editorconfig

@@ -1,30 +0,0 @@
-# EditorConfig helps developers define and maintain consistent
-# coding styles between different editors and IDEs
-# editorconfig.org
-
-root = true
-
-[*]
-
-# Change these settings to your own preference
-indent_style = space
-indent_size = 4
-
-# We recommend you to keep these unchanged
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = true
-insert_final_newline = true
-
-[*.md]
-trim_trailing_whitespace = false
-
-[Makefile]
-indent_style = tab
-
-[*.{yml,jade,js,css,lua,json}]
-indent_size = 2
-
-[*.go]
-indent_style = tab
-indent_size = 4

+ 0 - 18
CMakeLists.txt

@@ -1,18 +0,0 @@
-# this file is only to satisfy CLion
-
-cmake_minimum_required(VERSION 3.23)
-project(trexrunner)
-
-include_directories(.)
-
-set(FLIPPER_FIRMWARE_PATH /home/gelin/work/github/flipperzero-firmware)
-
-include_directories(SYSTEM
-    ${FLIPPER_FIRMWARE_PATH}/furi/
-    ${FLIPPER_FIRMWARE_PATH}/firmware/targets/f7/furi_hal/
-    ${FLIPPER_FIRMWARE_PATH}/firmware/targets/furi_hal_include/
-    ${FLIPPER_FIRMWARE_PATH}/applications/services/
-)
-
-# there's no need to build executable, but without it CLion don't load libraries
-add_executable(trexrunner trexrunner.c)

+ 0 - 20
Makefile

@@ -1,20 +0,0 @@
-FLIPPER_FIRMWARE_PATH ?= /home/gelin/work/github/flipperzero-firmware/
-
-.PHONY: build
-build: $(FLIPPER_FIRMWARE_PATH)/applications_user/t-rex-runner
-	cd $(FLIPPER_FIRMWARE_PATH) && ./fbt fap_t-rex-runner
-
-.PHONY: launch
-launch: $(FLIPPER_FIRMWARE_PATH)/applications_user/t-rex-runner
-	cd $(FLIPPER_FIRMWARE_PATH) && ./fbt launch_app APPSRC=applications_user/t-rex-runner
-
-.PHONY: assets
-assets:
-	rm assets_icons.*
-	$(MAKE) assets_icons.c
-
-assets_icons.c: $(FLIPPER_FIRMWARE_PATH)/applications_user/t-rex-runner
-	cd $(FLIPPER_FIRMWARE_PATH) && ./scripts/assets.py icons applications_user/t-rex-runner/assets/ applications_user/t-rex-runner/
-
-$(FLIPPER_FIRMWARE_PATH)/applications_user/t-rex-runner:
-	ln -s $(PWD) $(FLIPPER_FIRMWARE_PATH)/applications_user/t-rex-runner