깃헙 프로젝트 의존성 표시
js로 만들어져있는 polyLabel을 C#으로 만들어서 쓰려고 했는데 C#에는 우선순위 큐(Priority Queue)가 기본 구현되어 있지 않아서 우선순위 큐 구현을 같다가 써야됐다.
사용한 구현은 https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp
BlueRaja/High-Speed-Priority-Queue-for-C-Sharp
A C# priority queue optimized for pathfinding applications - BlueRaja/High-Speed-Priority-Queue-for-C-Sharp
github.com
아래 링크는 git repo에 의존성을 표현하는 방법
git submodule add [깃헙링크] [해당 라이브러리를 저장할 경로]
https://stackoverflow.com/questions/7813030/how-can-i-have-linked-dependencies-in-a-git-repo
How can I have linked dependencies in a git repo?
In my scripts, I often use libraries (mine or others') that have their own repos. I don't want to duplicate those in my repo and get stuck with updating them every time a new version comes out. Ho...
stackoverflow.com