Skip to content

Commit

Permalink
Add simple CMake build script (#24)
Browse files Browse the repository at this point in the history
Fixes #15
  • Loading branch information
Ybalrid authored and crosire committed Mar 21, 2019
1 parent f666407 commit fc2f29f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
@@ -0,0 +1,9 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.12)

PROJECT(blink)

SET(CMAKE_CXX_STANDARD 17)

FILE(GLOB blink_sources CONFIGURE_DEPENDS ${CMAKE_SOURCE_DIR}/source/*)

ADD_EXECUTABLE(blink ${blink_sources})

0 comments on commit fc2f29f

Please sign in to comment.