10

I am trying to create a Vala project to see how i like developing with the language as a possible replacement for Mono. I think that the automake stuff can be used to generate a project template with all the necessary files (sans my .vala code). Any help would be appreciated.

Ronaldo Nascimento
  • 1,571
  • 3
  • 21
  • 40

4 Answers4

3

There's a sample skeleton Vala project called Sampala. You can clone it and start from there.

Alexander Kojevnikov
  • 17,580
  • 5
  • 49
  • 46
2

Automake just recently added support for Vala. To find out more about it check out Automake's notes.

Kredns
  • 36,461
  • 52
  • 152
  • 203
2

Vala Toys for GEdit includes a tool called vala-gen-project. Give it a try!

elmarco
  • 31,633
  • 21
  • 64
  • 68
1

Download the source code for the Vala compiler and look at 'configure.ac' and 'Makefile.am' in each subdirectory. Vala itself is the canonical example of how to build a Vala project.

Samuel Danielson
  • 5,231
  • 3
  • 35
  • 37