Changes between Version 45 and Version 46 of Developing your own applications
- Timestamp:
- 01/11/11 22:36:51 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Developing your own applications
v45 v46 64 64 $ cd .. 65 65 }}} 66 Create a file called '''configure.in''' and insert the following text: 66 Create a file called '''configure.ac''' and insert the following text: 67 {{{ 68 AC_INIT([my_first_app],0.1) 69 AM_INIT_AUTOMAKE 70 AC_CONFIG_SRCDIR([src/my_first_app.vala]) 71 72 AC_PROG_CC 73 m4_pattern_allow 74 AM_PROG_VALAC([0.7.4]) 75 76 PKG_CHECK_MODULES([DEPS], [glib-2.0]) 77 78 AC_OUTPUT([Makefile 79 src/Makefile data/Makefile]) 80 }}} 67 81 68 82 === 4. Add a bitbake recipe ===
