cmake_bcb added

This commit is contained in:
Kolan Sh 2012-05-25 15:29:12 +04:00
parent e745eb0256
commit 6275a7c260
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,5 @@
project (cmakeBCB)
cmake_minimum_required (VERSION 2.6)
add_executable (test test.c)

8
c/cmake_bcb/test.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main (void)
{
puts ("Hello world!\n");
return 0;
}