Build CCF Applications

Note

Before building a CCF application, make sure that CCF is installed (see Install CCF).

Once an application is complete, it needs to be built into a shared object.

Using cmake, an application can be built using the functions provided by CCF’s cmake/ccf_app.cmake. For example, for the js_generic JavaScript application:

add_ccf_app(
  js_generic SRCS ${CCF_DIR}/src/apps/js_generic/js_generic.cpp INSTALL_LIBS ON
)