peonpad

(★ 36)

Warcraft II on iPad. Native iPad port of the open-source Stratagus engine with support for user-supplied Warcraft II data.

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .gitignore
  • CMakeLists.txt
  • LICENSE
  • NOTICE
  • README.md
  • THIRD_PARTY_NOTICES.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:

🔍

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

설명 보기 ▼

애플리케이션 컴파일을 위한 설치된 라이브러리의 세부 정보를 제공.
더 많은 정보: <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 및 모든 의존성을 사용하여 코드 컴파일:

🔍

xcrun

설명 보기 ▼

개발 도구 및 속성을 실행하거나 찾습니다.
더 많은 정보: <https://keith.github.io/xcode-man-pages/xcrun.1.html>.

xcrun {{tool}} {{arguments}}

활성 개발자 디렉토리에서 도구를 찾고 실행:

xcrun {{tool}} {{arguments}} --verbose

자세한 출력 표시:

xcrun --sdk {{sdk_name}}

주어진 SDK에 대한 도구 찾기:

// repository documentation