We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14de3ee commit c767579Copy full SHA for c767579
.gitignore
@@ -41,3 +41,7 @@ compute_and_write_csv_example
41
compute_and_write_output.csv
42
parquet-arrow-example.parquet
43
reader_writer
44
+.ninja_deps
45
+.ninja_log
46
+Makefile
47
+.cache/
CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
2
3
project(ArrowExamples)
4
5
-set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "cmake_modules")
+set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake_modules" ${CMAKE_MODULE_PATH})
6
7
# This ensures that things like gnu++11 get passed correctly
8
if(NOT DEFINED CMAKE_CXX_STANDARD)
0 commit comments