[github] https://github.com/chronos2015/samples/tree/master/cmake/c/01.helloworld
[CMakeLists.txt]
# プロジェクト名の指定
project(helloworld)
# 実行ファイルの名前とソースコードのファイルの指定
# 複数ある場合は、半角スペース区切りで、ファイル名に半角スペースがある場合は、ダブルクォーテーション(“)で囲んで指定
# 例)
# add_executable([実行ファイルの名前] [ソースコードのファイル名])
add_executable(helloworld helloworld.c)