Added CMakeLists

This commit is contained in:
jpk 2017-08-27 18:16:49 +02:00
parent f88c046ca7
commit 878c982b83
1 changed files with 10 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
cmake_minimum_required (VERSION 2.8)
# projectname is the same as the main-executable
project(lw12ctl)
add_definitions('-g')
add_definitions('-Wall')
add_library (lw12 lw12.c)
add_executable (lw12ctl lw12.c lw12ctl.c)