mirror of
https://github.com/ModOrganizer2/cmake_common.git
synced 2026-07-27 14:06:46 -07:00
12 lines
219 B
CMake
12 lines
219 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/python.cmake)
|
|
|
|
macro(do_project)
|
|
do_python_project()
|
|
endmacro()
|
|
|
|
|
|
macro(do_src)
|
|
install(FILES ${source_files} DESTINATION bin/plugins)
|
|
endmacro()
|