blob: 4c2ba0ac35abc8ef018e03ec7c99f23d5d68bfcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- CMakeLists.txt.orig 2022-01-08 04:45:42 UTC
+++ CMakeLists.txt
@@ -2,6 +2,7 @@ cmake_minimum_required(VERSION 3.20)
project(cpp_pyqubo)
+if (FALSE)
include(external/boost_assert.cmake)
include(external/boost_config.cmake)
include(external/boost_container.cmake)
@@ -17,6 +18,9 @@ include(external/cimod.cmake)
include(external/eigen.cmake)
include(external/pybind11.cmake)
include(external/robin_hood.cmake)
+endif()
+
+find_package(pybind11)
pybind11_add_module(cpp_pyqubo src/main.cpp)
|