myx/README.md
2022-10-02 13:12:07 +03:00

21 lines
650 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Библиотека дополнительных фукций для CMake
## Установка
В корневом каталоге проекта создать каталог `cmake` и распаковать
в него архив проекта, который можно скачать [здесь](../../../tags).
## Использование
В основном файле `CMakeLists.txt` проекта после команды
`project` добавить строки:
```cmake
if(MYX_CMAKE_USE_SYSTEM)
find_package(MyxCMake 1.99.40 REQUIRED)
else()
include(${PROJECT_SOURCE_DIR}/cmake/myx/MyxCMakeConfig.cmake)
endif()
```