makcu-cpp
A library to interact with makcu devices
파일 탐색기
- ci.yml
- basic_usage.cpp
- baud_rate_test.cpp
- build.bat
- build.sh
- c_api_test.c
- CMakeLists.txt
- demo.cpp
- README.md
- makcu.h
- makcu_c.h
- serialport.h
- makcu.cpp
- makcu_c.cpp
- serialport.cpp
- .gitignore
- api-reference.html
- build.bat
- build.sh
- CMakeLists.txt
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cmake
설명 보기 ▼
cmake
네이티브 빌드 시스템을 위한 빌드 설정 파일을 생성하는, 크로스 플랫폼 빌드 자동화 도구.
더 많은 정보: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
cmake {{path/to/project_directory}}
프로젝트 디렉터리의 `CMakeLists.txt`를 사용해 현재 디렉터리에 빌드 설정을 생성:
cmake --build {{path/to/build_directory}}
지정한 디렉터리의 빌드 설정을 사용해 빌드 산출물을 생성:
cmake --install {{path/to/build_directory}} --strip
빌드 산출물을 `/usr/local/`에 설치하고 디버그 심볼을 제거:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pkg-config
설명 보기 ▼
pkg-config
애플리케이션 컴파일을 위한 설치된 라이브러리의 세부 정보를 제공.
더 많은 정보: <https://manned.org/pkg-config>.
pkg-config --libs {{library1 library2 ...}}
라이브러리 및 그 의존성 목록 확인:
pkg-config --cflags --libs {{library1 library2 ...}}
라이브러리, 그 의존성 및 gcc에 대한 적절한 cflags 목록 확인:
pkg-config --modversion {{module1 module2 ...}}
libgtk-3, libwebkit2gtk-4.0 및 모든 의존성을 사용하여 코드 컴파일:
usermod
설명 보기 ▼
usermod
사용자 계정을 수정합니다.
관련 항목: `users`, `useradd`, `userdel`.
더 많은 정보: <https://manned.org/usermod>.
sudo usermod {{[-l|--login]}} {{new_username}} {{username}}
사용자명을 변경:
sudo usermod {{[-u|--uid]}} {{id}} {{username}}
사용자 ID 변경:
sudo usermod {{[-s|--shell]}} {{path/to/shell}} {{username}}
사용자 셸 변경:
