CMake tutorial step1 added.

This commit is contained in:
Kolan Sh 2012-05-22 14:49:17 +04:00
parent 7fa1a0a6d6
commit 6909f769b1
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,3 @@
cmake_minimum_required (VERSION 2.6)
project (Tutorial)
add_executable (Tutorial tutorial.cxx)

View File

@ -0,0 +1,17 @@
// A simple program that computes the square root of a number
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main (int argc, char *argv[])
{
if (argc < 2)
{
fprintf(stdout,"Usage: %s number\n",argv[0]);
return 1;
}
double inputValue = atof(argv[1]);
double outputValue = sqrt(inputValue);
fprintf(stdout,"The square root of %g is %g\n",
inputValue, outputValue);
return 0;
}