Skip to content

Commit 7e4c217

Browse files
committed
chore: add cmakelists
1 parent 6ca8a68 commit 7e4c217

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
cmake_minimum_required(VERSION 3.0)
2+
project(rehline LANGUAGES CXX)
3+
4+
set(PYBIND11_FINDPYTHON ON)
5+
find_package(pybind11 CONFIG REQUIRED)
6+
7+
pybind11_add_module(rehline MODULE src/rehline.cpp)
8+
9+
install(TARGETS rehline DESTINATION .)

0 commit comments

Comments
 (0)