nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/CMakeLists.txt b/CMakeLists.txt
2index 3bfbc5ef9043..2a25188f8f92 100644
3--- a/CMakeLists.txt
4+++ b/CMakeLists.txt
5@@ -26,7 +26,7 @@ set ( CMAKE_INTERPROCEDURAL_OPTIMIZATION $ENV{CMAKE_INTERPROCEDURAL_OPTIMIZATION
6 set ( _CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} )
7
8 # The below version is used for versioning of the package and is replaced by the version from the pack workflow
9-project ( columnar VERSION 0.0.0 )
10+project ( columnar VERSION @version@ )
11
12 # sometimes CMAKE_BUILD_TYPE became set after PROJECT statement, undo it.
13 if (NOT _CMAKE_BUILD_TYPE AND CMAKE_BUILD_TYPE)
14@@ -108,7 +108,7 @@ set (_includes include/manticore-columnar-api)
15 target_include_directories ( columnar_api INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>$<INSTALL_INTERFACE:${_includes}> )
16
17 # install columnar and secondary API (only headers, no packaging, don't build anything at all)
18-if (API_ONLY)
19+# if (API_ONLY)
20 install ( TARGETS columnar_api EXPORT apiexport )
21 install ( TARGETS secondary_api EXPORT apiexport )
22 install ( TARGETS knn_api EXPORT apiexport )
23@@ -147,8 +147,8 @@ include(\"\${CMAKE_CURRENT_LIST_DIR}/columnar-targets.cmake\")" )
24 install ( FILES "${CMAKE_CURRENT_BINARY_DIR}/columnar-config-version.cmake" DESTINATION "${API_CMAKE_DIR}" )
25
26 # finish configuration, as it is API_ONLY
27- return()
28-endif ()
29+ # return()
30+# endif ()
31
32 # here we came in case of full build (i.e. columnar and/or secondary and/or knn)
33