Skip to content

Commit 15cad65

Browse files
authored
Update build defaults to support typical dev needs (#43)
1 parent 8c3abf6 commit 15cad65

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ project(CUDAQX
1616
LANGUAGES C CXX)
1717

1818
set(CUDAQX_ALL_LIBS "qec;solvers")
19-
set(CUDAQX_ENABLE_LIBS "" CACHE STRING
19+
set(CUDAQX_ENABLE_LIBS "all" CACHE STRING
2020
"Semicolon-separated list of libs to build (${CUDAQX_ALL_LIBS}), or \"all\".")
2121

2222
# We don't want to handle "all" later, thus expand it here.
@@ -45,9 +45,9 @@ include(CUDA-QX)
4545
# Options
4646
# ==============================================================================
4747

48-
option(CUDAQX_INCLUDE_TESTS "Generate build targets for unit tests." OFF)
49-
option(CUDAQX_INCLUDE_DOCS "Generate build targets for the docs." OFF)
50-
option(CUDAQX_BINDINGS_PYTHON "Generate build targets for python bindings." OFF)
48+
option(CUDAQX_INCLUDE_TESTS "Generate build targets for unit tests." ON)
49+
option(CUDAQX_INCLUDE_DOCS "Generate build targets for the docs." ON)
50+
option(CUDAQX_BINDINGS_PYTHON "Generate build targets for python bindings." ON)
5151

5252
# Top-level External Dependencies
5353
# ==============================================================================

0 commit comments

Comments
 (0)