foundationdb/bindings/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
460 B
CMake
Raw Normal View History

2021-08-24 07:25:19 +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()
2021-08-05 21:31:15 +08:00
if(WITH_PYTHON_BINDING)
add_subdirectory(python)
endif()
if(WITH_JAVA_BINDING)
2019-02-08 14:18:31 +08:00
add_subdirectory(java)
endif()
2021-08-05 21:31:15 +08:00
if(WITH_GO_BINDING AND NOT OPEN_FOR_IDE)
2019-02-10 14:08:34 +08:00
add_subdirectory(go)
endif()
2021-08-05 21:31:15 +08:00
if(WITH_RUBY_BINDING)
add_subdirectory(ruby)
endif()
2020-03-27 07:01:58 +08:00
if(NOT WIN32 AND NOT OPEN_FOR_IDE)
package_bindingtester()
package_bindingtester2()
2020-03-27 07:01:58 +08:00
endif()