Skip to content

Commit

Permalink
Merge pull request #16 from icyfork/master
Browse files Browse the repository at this point in the history
Target binary requires :libm to be specified explicitly
  • Loading branch information
stevedekorte committed Oct 11, 2013
2 parents 4aaf64e + 0e9d418 commit e254251
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ find_library( DL_LIB NAMES ${CMAKE_DL_LIBS} )
target_link_libraries(vertexdb ${CMAKE_DL_LIBS})
MESSAGE( STATUS "using dl library: ${DL_LIB}" )

target_link_libraries(vertexdb m)
MESSAGE( STATUS "using m library from the standard glibc")

include_directories(source source/pdb source/httpserver source/basekit/source source/store source/basekit/source/simd_cph/include)

# installing vertextdb binary
install(TARGETS vertexdb DESTINATION bin)
install(TARGETS vertexdb DESTINATION bin)

0 comments on commit e254251

Please sign in to comment.