Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 832 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 832 Bytes

cmake-defaults

This repository establishes a standard build environment for RGL projects including at least the following:

Usage

Include as a Git submodule and include() after having declared the CMake minimum version, project name, and build options.

cmake_minimum_required(VERSION 3.13...3.18)

project(sjit
  DESCRIPTION "Struct-JIT"
  LANGUAGES CXX
)

option(SJIT_ENABLE_PYTHON "Build Python extension library?" ON)
# Other options here

include(ext/cmake-defaults/CMakeLists.txt)