├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── integrate.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── CMakeLists.txt ├── README.md ├── imgui.ini ├── main.cpp └── yacpm.json ├── packages ├── aurora │ ├── CMakeLists.txt │ └── yacpkg.json ├── entt │ ├── CMakeLists.txt │ └── yacpkg.json ├── glad │ ├── CMakeLists.txt │ └── yacpkg.json ├── glfw │ ├── CMakeLists.txt │ └── yacpkg.json ├── glm │ ├── CMakeLists.txt │ └── yacpkg.json ├── imgui │ ├── CMakeLists.txt │ └── yacpkg.json ├── nlohmann-json │ ├── CMakeLists.txt │ └── yacpkg.json ├── raylib-cpp │ ├── CMakeLists.txt │ └── yacpkg.json ├── raylib │ ├── CMakeLists.txt │ └── yacpkg.json ├── rttr │ ├── CMakeLists.txt │ └── yacpkg.json ├── sdl2 │ ├── CMakeLists.txt │ ├── README.md │ └── yacpkg.json ├── sfml │ ├── CMakeLists.txt │ ├── README.md │ └── yacpkg.json ├── spdlog │ ├── CMakeLists.txt │ └── yacpkg.json ├── stb │ ├── CMakeLists.txt │ └── yacpkg.json ├── thor │ ├── CMakeLists.txt │ └── yacpkg.json ├── yaml-cpp │ ├── CMakeLists.txt │ └── yacpkg.json └── zlib │ ├── CMakeLists.txt │ └── yacpkg.json ├── tests ├── current_live_files │ ├── CMakeLists.txt │ ├── main.cpp │ └── yacpm.json ├── custom_package │ ├── CMakeLists.txt │ ├── lib.cmake │ ├── main.cpp │ └── yacpm.json ├── library_using_yacpm │ ├── CMakeLists.txt │ ├── main.cpp │ └── test_library │ │ ├── CMakeLists.txt │ │ ├── yacpm.json │ │ ├── yacpm_library_test.cpp │ │ └── yacpm_library_test.h ├── run_tests.py ├── test_project.cmake └── test_remote │ ├── CMakeLists.txt │ ├── main.cpp │ ├── test_remote │ ├── imgui │ │ ├── CMakeLists.txt │ │ └── yacpkg.json │ └── yacpm_library_test │ │ ├── CMakeLists.txt │ │ └── yacpkg.json │ └── yacpm.json ├── yacpm.cmake ├── yacpm.py └── yacpm_extended.cmake /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | packages/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/integrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/.github/workflows/integrate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/README.md -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/example/README.md -------------------------------------------------------------------------------- /example/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/example/imgui.ini -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/example/main.cpp -------------------------------------------------------------------------------- /example/yacpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/example/yacpm.json -------------------------------------------------------------------------------- /packages/aurora/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/aurora/CMakeLists.txt -------------------------------------------------------------------------------- /packages/aurora/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/aurora/yacpkg.json -------------------------------------------------------------------------------- /packages/entt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/entt/CMakeLists.txt -------------------------------------------------------------------------------- /packages/entt/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/entt/yacpkg.json -------------------------------------------------------------------------------- /packages/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glad/CMakeLists.txt -------------------------------------------------------------------------------- /packages/glad/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glad/yacpkg.json -------------------------------------------------------------------------------- /packages/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /packages/glfw/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glfw/yacpkg.json -------------------------------------------------------------------------------- /packages/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glm/CMakeLists.txt -------------------------------------------------------------------------------- /packages/glm/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/glm/yacpkg.json -------------------------------------------------------------------------------- /packages/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /packages/imgui/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/imgui/yacpkg.json -------------------------------------------------------------------------------- /packages/nlohmann-json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/nlohmann-json/CMakeLists.txt -------------------------------------------------------------------------------- /packages/nlohmann-json/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/nlohmann-json/yacpkg.json -------------------------------------------------------------------------------- /packages/raylib-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/raylib-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /packages/raylib-cpp/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/raylib-cpp/yacpkg.json -------------------------------------------------------------------------------- /packages/raylib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/raylib/CMakeLists.txt -------------------------------------------------------------------------------- /packages/raylib/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/raylib/yacpkg.json -------------------------------------------------------------------------------- /packages/rttr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/rttr/CMakeLists.txt -------------------------------------------------------------------------------- /packages/rttr/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/rttr/yacpkg.json -------------------------------------------------------------------------------- /packages/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /packages/sdl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sdl2/README.md -------------------------------------------------------------------------------- /packages/sdl2/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sdl2/yacpkg.json -------------------------------------------------------------------------------- /packages/sfml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sfml/CMakeLists.txt -------------------------------------------------------------------------------- /packages/sfml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sfml/README.md -------------------------------------------------------------------------------- /packages/sfml/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/sfml/yacpkg.json -------------------------------------------------------------------------------- /packages/spdlog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/spdlog/CMakeLists.txt -------------------------------------------------------------------------------- /packages/spdlog/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/spdlog/yacpkg.json -------------------------------------------------------------------------------- /packages/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/stb/CMakeLists.txt -------------------------------------------------------------------------------- /packages/stb/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/stb/yacpkg.json -------------------------------------------------------------------------------- /packages/thor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/thor/CMakeLists.txt -------------------------------------------------------------------------------- /packages/thor/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/thor/yacpkg.json -------------------------------------------------------------------------------- /packages/yaml-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/yaml-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /packages/yaml-cpp/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/yaml-cpp/yacpkg.json -------------------------------------------------------------------------------- /packages/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /packages/zlib/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/packages/zlib/yacpkg.json -------------------------------------------------------------------------------- /tests/current_live_files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/current_live_files/CMakeLists.txt -------------------------------------------------------------------------------- /tests/current_live_files/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/current_live_files/main.cpp -------------------------------------------------------------------------------- /tests/current_live_files/yacpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/current_live_files/yacpm.json -------------------------------------------------------------------------------- /tests/custom_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/custom_package/CMakeLists.txt -------------------------------------------------------------------------------- /tests/custom_package/lib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/custom_package/lib.cmake -------------------------------------------------------------------------------- /tests/custom_package/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/custom_package/main.cpp -------------------------------------------------------------------------------- /tests/custom_package/yacpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/custom_package/yacpm.json -------------------------------------------------------------------------------- /tests/library_using_yacpm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/CMakeLists.txt -------------------------------------------------------------------------------- /tests/library_using_yacpm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/main.cpp -------------------------------------------------------------------------------- /tests/library_using_yacpm/test_library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/test_library/CMakeLists.txt -------------------------------------------------------------------------------- /tests/library_using_yacpm/test_library/yacpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/test_library/yacpm.json -------------------------------------------------------------------------------- /tests/library_using_yacpm/test_library/yacpm_library_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/test_library/yacpm_library_test.cpp -------------------------------------------------------------------------------- /tests/library_using_yacpm/test_library/yacpm_library_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/library_using_yacpm/test_library/yacpm_library_test.h -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_project.cmake -------------------------------------------------------------------------------- /tests/test_remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_remote/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/main.cpp -------------------------------------------------------------------------------- /tests/test_remote/test_remote/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/test_remote/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_remote/test_remote/imgui/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/test_remote/imgui/yacpkg.json -------------------------------------------------------------------------------- /tests/test_remote/test_remote/yacpm_library_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/test_remote/yacpm_library_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_remote/test_remote/yacpm_library_test/yacpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/test_remote/yacpm_library_test/yacpkg.json -------------------------------------------------------------------------------- /tests/test_remote/yacpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/tests/test_remote/yacpm.json -------------------------------------------------------------------------------- /yacpm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/yacpm.cmake -------------------------------------------------------------------------------- /yacpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/yacpm.py -------------------------------------------------------------------------------- /yacpm_extended.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calbabreaker/yacpm/HEAD/yacpm_extended.cmake --------------------------------------------------------------------------------