indigo-node
Version:
Indigo nodejs bindings
15 lines (11 loc) • 450 B
Plain Text
cmake_minimum_required(VERSION 2.6)
project(CommonOracle C CXX)
include(ConfigureCommon)
include_directories(${OCI_INCLUDE_DIRS} ${Common_SOURCE_DIR})
file (GLOB CommonOracle_src *.cpp)
file (GLOB CommonOracle_headers *.h)
add_library(common-oracle ${CommonOracle_src} ${CommonOracle_headers})
set_target_properties(common-oracle PROPERTIES COMPILE_FLAGS "${COMPILE_FLAGS}")
if (NOT NO_STATIC)
pack_static(common-oracle)
endif()