You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
quicktex/CMakeLists.txt

11 lines
291 B
CMake

3 years ago
cmake_minimum_required(VERSION 3.17)
project(python_rgbcx)
3 years ago
# Setup pybind
add_subdirectory(extern/pybind11)
3 years ago
3 years ago
# Make the pybind module
pybind11_add_module(python_rgbcx src/main.cpp)
# Set module features, like C/C++ standards
target_compile_features(python_rgbcx PUBLIC cxx_std_14 c_std_11)