lw12/CMakeLists.txt

11 lines
221 B
CMake
Raw Normal View History

2017-08-27 18:16:49 +02:00
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)