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-26 09:31:33 +08:00
|
|
|
if(WITH_GO AND NOT OPEN_FOR_IDE)
|
2019-02-10 14:08:34 +08:00
|
|
|
add_subdirectory(go)
|
|
|
|
endif()
|
2019-02-11 02:05:52 +08:00
|
|
|
if(WITH_RUBY)
|
|
|
|
add_subdirectory(ruby)
|
|
|
|
endif()
|
2020-03-27 07:01:58 +08:00
|
|
|
if(NOT WIN32 AND NOT OPEN_FOR_IDE)
|
|
|
|
package_bindingtester()
|
|
|
|
endif()
|