FastSMRW

(★ 18)

A fast, accessible Mastodon/Bluesky client for blind users — C++ rewrite of FastSM with a portable core and a pure Win32 front end.

파일 탐색기

  • .clang-format
  • .gitattributes
  • .gitignore
  • build.bat
  • CLAUDE.md
  • download-deps.bat
  • installer.iss
  • README-Android.md
  • README-iOS.md
  • README-Linux.md
  • README-macOS.md
  • README-Windows.md
  • 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:

🔍

x86_64

설명 보기 ▼

이 명령은 `setarch x86_64`의 별칭입니다.

tldr setarch

자세한 내용은 원본 명령을 참고하세요:

🔍

lib

설명 보기 ▼

Microsoft Library Manager(라이브러리 관리 도구)로, 오브젝트 파일로부터 정적 라이브러리를 생성하고 관리.
더 많은 정보: <https://learn.microsoft.com/cpp/build/reference/lib-reference>.

lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}

오브젝트 파일로부터 정적 라이브러리 생성:

lib /LIST {{path\to\library.lib}}

라이브러리의 내용 목록 표시:

lib {{path\to\library.lib}} {{path\to\file.obj}}

기존 라이브러리에 오브젝트 파일 추가:

🔍

vswhere

설명 보기 ▼

Visual Studio 2017 및 더 최신 설치를 찾습니다.
더 많은 정보: <https://github.com/microsoft/vswhere>.

vswhere -products * -latest -prerelease -find **\VC\Auxiliary\Build\vcvarsall.bat

vcvarsall.bat의 경로를 찾아 환경 변수를 설정:

vswhere -products * -latest -prerelease -find **\Hostx64\x64\*

x64 MSVC 컴파일러 (`cl.exe` 등)의 디렉토리 찾기:

vswhere -products * -latest -prerelease -find **\Llvm\bin\*

Visual Studio에 포함된 Clang (clang-cl, clang-tidy 등)의 디렉토리 찾기:

// repository documentation