# HG changeset patch # User ikkun # Date 1497667158 -32400 # Node ID 14989d0ed07757d1e709e9b223340246d9fa8f51 # Parent 87d79fc7f1cfd884a76b495e5594e587ad06020c add CMakeLists.txt diff -r 87d79fc7f1cf -r 14989d0ed077 3_generation/CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/3_generation/CMakeLists.txt Sat Jun 17 11:39:18 2017 +0900 @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.7) +add_custom_command( + OUTPUT hello.c + COMMAND perl "${PROJECT_SOURCE_DIR}/scripts/generation.pl" +) +add_executable(Hello Hello.c)