vitoruapt / pariaula12B

Exercise for students to develop a GTK application collaboratively
0 stars 0 forks source link

How to compile and execute? #1

Closed miguelriemoliveira closed 4 years ago

miguelriemoliveira commented 4 years ago

We need a Compilation and How to run sections on the README, I have created it already, can you fill them in?

miguelriemoliveira commented 4 years ago

Hi @vitoruapt , I created the sections for you to write in.

Compilation is here: https://github.com/vitoruapt/pariaula12B#compilation

and Execution here

miguelriemoliveira commented 4 years ago

Hi @vitoruapt ,

I added some proposals for those sections, please review and validate.

You may close the issue when its done.

vitoruapt commented 4 years ago

Compilation instructions: common rules of cmake based projects taking advantage of the out-source building. Create a build directory, change into ir, run cmake indicating the path of the CMakeLists.txt file, and perform the building tasks like "make". Suggested steps: -- mkdir build -- cd build -- cmake .. -- make