https://github.com/robloach/cmakepacks
CMake definition file for Duktape, raylib, and Umka.
https://github.com/robloach/cmakepacks
Last synced: 4 months ago
JSON representation
CMake definition file for Duktape, raylib, and Umka.
- Host: GitHub
- URL: https://github.com/robloach/cmakepacks
- Owner: RobLoach
- License: other
- Created: 2022-10-01T02:37:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-18T21:41:44.000Z (over 3 years ago)
- Last Synced: 2025-08-16T05:45:39.741Z (10 months ago)
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMake Packs
A set of [CMake Package](https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html) and modules for [CMake](https://cmake.org/).
## Usage
Add the CMake definition files to your project by either copying them into your CMake Modules folder, or using FetchContent...
``` cmake
#CMakePacks
include(FetchContent)
FetchContent_Declare(
cmakepacks
GIT_REPOSITORY https://github.com/robloach/cmakepacks.git
GIT_TAG v0.0.1
)
FetchContent_GetProperties(cmakepacks)
if (NOT cmakepacks_POPULATED)
set(FETCHCONTENT_QUIET NO)
FetchContent_Populate(cmakepacks)
add_subdirectory(${cmakepacks_SOURCE_DIR} ${cmakepacks_BINARY_DIR})
endif()
```
Afterwards, you'll be able to bring in the dependencies with `find_package(raylib)`.
## Packages
- [`duktape`](https://github.com/svaarala/duktape)
- [`raylib`](https://raylib.com)
- [`umka`](https://github.com/vtereshkov/umka-lang)
## License
[MIT](LICENSE)