Skip to content

Commit

Permalink
Merge pull request #23 from yandex/escaping
Browse files Browse the repository at this point in the history
process CONVERT function
  • Loading branch information
artpaul authored Jul 12, 2017
2 parents 21aab1f + 0b560ea commit 8468866
Show file tree
Hide file tree
Showing 27 changed files with 32,168 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ install:
script:
- mkdir build
- cd build
- cmake .. -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=`which $CXX` -DCMAKE_C_COMPILER=`which $CC` && make -j `nproc || grep -c ^processor /proc/cpuinfo`
- cmake .. -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=`which $CXX` -DCMAKE_C_COMPILER=`which $CC` && make -j `nproc || grep -c ^processor /proc/cpuinfo` && ./driver/ut/clickhouse-odbc-ut
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,8 @@ if (USE_INTERNAL_POCO_LIBRARY)
set_property(TARGET Foundation PROPERTY INTERFACE_LINK_LIBRARIES "")
endif ()

include_directories(contrib)
include_directories(driver)

add_subdirectory (driver)
add_subdirectory (driver/ut)
2 changes: 2 additions & 0 deletions contrib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
add_subdirectory (gtest)

if (USE_INTERNAL_POCO_LIBRARY)
add_subdirectory (poco)
endif ()
3 changes: 3 additions & 0 deletions contrib/gtest/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ADD_LIBRARY (gtest-lib STATIC
gtest-all.cc
)
Loading

0 comments on commit 8468866

Please sign in to comment.