impeller-cmake-example

(★ 19)

No description available.

파일 탐색기

  • .clang-format
  • .gitignore
  • .gitmodules
  • CMakeLists.txt
  • CMakePresets.json
  • deps.sh
  • imgui.cmake
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

clangd

설명 보기 ▼

편집자에게 IDE와 유사한 기능을 제공하는 언어 서버.
직접 호출하기보다는 편집기 플러그인을 통해 사용해야 함.
더 많은 정보: <https://manned.org/clangd-22>.

clangd --help

사용 가능한 옵션 표시:

clangd --help-list

사용 가능한 옵션 목록:

clangd --version

버전 표시:

🔍

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

설명 보기 ▼

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:

🔍

passwd

설명 보기 ▼

사용자의 비밀번호 변경.
관련 항목: `chpasswd`.
더 많은 정보: <https://manned.org/passwd>.

passwd

현재 사용자의 비밀번호를 대화식으로 변경:

sudo passwd {{username}}

특정 사용자의 비밀번호 변경:

passwd {{[-S|--status]}}

사용자의 현재 상태 확인:

🔍

btrfs property

설명 보기 ▼

Get, set, or list properties for a BTRFS filesystem object (files, directories, subvolumes, filesystems, or devices).

sudo btrfs {{[p|property]}} {{[l|list]}} {{path/to/btrfs_object}}

List available properties (and descriptions) for the given btrfs object:

sudo btrfs {{[p|property]}} {{[g|get]}} {{path/to/btrfs_object}}

Get all properties for the given btrfs object:

sudo btrfs {{[p|property]}} {{[g|get]}} {{path/to/btrfs_filesystem}} label

Get the `label` property for the given btrfs filesystem or device:

🔍

pacman-key

설명 보기 ▼

GnuPG를 사용하여 pacman의 키링을 관리하는 래퍼 스크립트.
관련 항목: `pacman`.
더 많은 정보: <https://manned.org/pacman-key>.

sudo pacman-key --init

`pacman` 키링 초기화:

sudo pacman-key --populate

기본 Arch Linux 키 추가:

pacman-key {{[-l|--list-keys]}}

공개 키링에서 키 나열:

🔍

pacman

설명 보기 ▼

Arch Linux 패키지 관리 도구.
관련 항목: `pacman-sync`, `pacman-remove`, `pacman-query`, `pacman-upgrade`, `pacman-files`, `pacman-database`, `pacman-deptest`, `pacman-key`, `pacman-mirrors`.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/pacman.8>.

sudo pacman -Syu

모든 패키지를 동기화하고 업데이트:

sudo pacman -S {{package}}

새 패키지 설치:

sudo pacman -Rs {{package}}

특정 패키지 및 의존성 제거:

// repository documentation