feature/new_xtext_generatorUpdated 2 years ago by kbirken

브랜치

 

commit 437949039aa10eecb37258bde029314c1c1b35be (HEAD -> master, origin/feature/new_xtext_generator

grep -inr "fDeploy.FDPropertyHost" *

 

아래 참고 사이트에[서 0.11.1을 다운받음 :

drive.google.com/file/d/0B7JseVbR6jvhU0pZb1UwSC1Mb2c/view?usp=sharing

 

site_franca_0.11.1.201705031527.zip

 

drive.google.com

 

Install  설치

필요항목설치

 

 

완료 

 

참고사이트

https://amosground.blogspot.com/2019/09/franca.html

 

Franca 설치 가이드

Franca 설치 가이드 설치 환경 OS : Windows 10, 64bit 참고 : https://github.com/franca/franca/wiki/Franca-Quick-Install-Guide 설치 순서 이클립스 인스톨러 를 사...

amosground.blogspot.com

 

목적 : 휴대폰을 이용해 재고조사 관리 (Android)

 

기능 

  • 카메라를 이용하여 바코드 인식 (바코드)
  • 바코드 인식된 정보를 엑셀과 연동 (발주량 update)
  • 엑셀 파일 로드 및 저장
  • 바코드 인식및 업데이트 정보를 database 에 저장
  • 설정 기능 
    • 인식된 바코드 정보의 상품명을 보여줄것인지
    • 현재 발주량을 보여줄 것인지

 

준비물

  • Android 개발환경 준비 (Window)
  • 사용 할 라이브러리 정리 필요

 

기능을 세부적으로 정리 필요.

  1. Android 설치 및 기본 테스트
  2. 라이브러리 조사
  3. Android 사용방법 습득
  4. 발주문서 항목과 바코드가 일치하는지 확인 필요. 안되면 망하는데..ㅋ 

버렸어요.죄송합니다.

vscode 에서 Qt 개발환경을 설정하기 위한 설정 (Ubuntu 20.04) qt cmake

vscode 를 실행한다.

 

 

control + shift + x 

cmake 를 검색하여 CMake, Cmake Tools 를 설치한다.

위 두개만 설치하면 가능한것으로 보임

QtCreator 에서 Gui 프로젝트 생성시 CMake 로 생성하도록 설정 (예제 테스트)

VSCode 에서 해당 프로젝트를 Load 한다.

ctrl + shift + P

CMake : Configure , Build

선택해주면 뭔 화면이 나오면서

c_cpp_properties.json 이 자동생성함

{

"configurations": [

{

"name": "Linux",

"includePath": [

"${workspaceFolder}/**",

"/Tools/QtInstall/5.14.2/gcc_64/include**",

"/Tools/QtInstall/5.14.2/gcc_64/include/QtGui"

],

"defines": [],

"compilerPath": "/usr/bin/g++-9",

"cStandard": "c11",

"cppStandard": "gnu++14",

"intelliSenseMode": "clang-x64",

"forcedInclude": [

"/Tools/QtInstall/5.14.2/gcc_64/include**"

]

}

],

"version": 4

}

F7 빌드 

Run폴더로 가서 벌레그림>  실행할 바이너리를 설정해줘야함

launch.json 파일이 생성된다.

 

{

"version": "0.2.0",

"configurations": [

{

"name": "(gdb) Launch",

"type": "cppdbg",

"request": "launch",

"program": "${workspaceFolder}/build/testQtcmake",

"args": [],

"stopAtEntry": false,

"cwd": "${workspaceFolder}",

"environment": [],

"externalConsole": false,

"MIMode": "gdb",

"setupCommands": [

{

"description": "Enable pretty-printing for gdb",

"text": "-enable-pretty-printing",

"ignoreFailures": true

}

]

}

]

}

 

"program": "${workspaceFolder}/build/testQtcmake",

실행할 프로그램 변경후 > 클릭하면 프로그램이 실행된다.

 

아래는 수행하지 X 

 

include 못잡는 것은 수행하지 못함.죄송..

 

 

 

https://marketplace.visualstudio.com/items?itemName=OralShaneCurtis-6510.launchqtcreator

 

Launch Qt Creator - Visual Studio Marketplace

OverviewQ & ARating & Review launchqtcreator README QtCreator is very useful for certain tasks! When working on Qt projects, there are things I find Qt Creator invaluable for -just too convenient to use anything else (almost). I often use Vislual Studio Co

marketplace.visualstudio.com

ctrl + p 입력후 내용 입력 

https://marketplace.visualstudio.com/items?itemName=OralShaneCurtis-6510.launchqtcreator

'Linux' 카테고리의 다른 글

[Qt5.15] Ubuntu 20.04 한글설정  (0) 2020.05.14
heaptrack  (0) 2020.05.13
Ubuntu 스킨 변경  (0) 2020.05.12
[USB] Ubuntu20.04 USB 이미지 만들기  (0) 2020.05.11

+ Recent posts