Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/basjam/ValaCompiler
A simple GUI for the command line valac.
https://github.com/basjam/ValaCompiler
gui valac
Last synced: 3 months ago
JSON representation
A simple GUI for the command line valac.
- Host: GitHub
- URL: https://github.com/basjam/ValaCompiler
- Owner: basjam
- License: other
- Created: 2017-11-01T21:14:24.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-25T07:06:29.000Z (about 4 years ago)
- Last Synced: 2024-07-28T23:29:40.564Z (3 months ago)
- Topics: gui, valac
- Language: Vala
- Size: 625 KB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-elementaryos - ValaCompiler - A simple GUI for valac [:white_check_mark:](https://appcenter.elementary.io/com.github.basjam.valacompiler.desktop) (Applications / Development)
README
ValaCompiler
A simple GUI for the command line valac.
## What the application does
1-Select your project source folder, and create a "valacompiler" folder in it.2-Scan the folder for valac compilable files and view them in a toggle list.
3-Modify the compile instructions by adding user selected options (eg:- pkg=gtk+3.0 pkg=granite .....), and add a "valacompiler.options" file in the "/valacompiler" folder.
4-Compile by using the command line (valac) + toggled files + options from step 3 + output a test file "valacompiler.test" in the "/valacompiler" inside the source folder.
5-Live report compile output.
6-Test run the output file "valacompiler.test".
7-Live report the test run output.
## Building and Installation
you'll need the following dependencies:
* cmake
* valac
* libgranite-dev
* libgtk-3-devIt is recommended to create a clean build environment
mkdir build
cd build/Run 'cmake' to configure the build environment and then 'make' to build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
makeTo install, use 'make install'
sudo make install
## Arch Linux
Arch Linux users can find ValaCompiler under the name [valacompiler-git](https://aur.archlinux.org/packages/valacompiler-git/) in the **AUR**:`$ aurman -S valacompiler-git`
## Precautions
* This app will create a folder named "valacompiler" in your source folder.