foundationdb/bindings/CMakeLists.txt

16 lines
285 B
CMake
Raw Normal View History

2018-05-04 07:28:18 +08:00
add_subdirectory(c)
2019-02-18 11:29:33 +08:00
if(NOT OPEN_FOR_IDE)
# flow bindings currently doesn't support that
add_subdirectory(flow)
endif()
2018-05-05 01:35:01 +08:00
add_subdirectory(python)
2019-02-15 08:37:48 +08:00
if(WITH_JAVA)
2019-02-08 14:18:31 +08:00
add_subdirectory(java)
endif()
2019-02-10 14:08:34 +08:00
if(WITH_GO)
add_subdirectory(go)
endif()
if(WITH_RUBY)
add_subdirectory(ruby)
endif()