summaryrefslogtreecommitdiffstats
path: root/g2/configure.ac
blob: c8af7747b89dbae4cba060a4af94b2b222f20679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT(g2, 3.0)
AM_INIT_AUTOMAKE
AM_SILENT_RULES([yes])

AC_CHECK_LIB([vppinfra], [clib_mem_get_page_size],,
        AC_MSG_ERROR([Please install the vpp-lib package]))
AC_CHECK_HEADER([vppinfra/clib.h],,
        AC_MSG_ERROR([Please install the vpp-dev package]))

PKG_CHECK_MODULES(g2, gtk+-2.0)

AC_OUTPUT([Makefile])
her express or implied. # See the License for the specific language governing permissions and # limitations under the License. include_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) ############################################################################## # find and add all plugin subdirs ############################################################################## FILE(GLOB files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*/CMakeLists.txt ) foreach (f ${files}) get_filename_component(dir ${f} DIRECTORY) add_subdirectory(${dir}) endforeach()