Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
adding cmakelists for including hwlib as a cmakelibrary
Browse files Browse the repository at this point in the history
  • Loading branch information
CvRXX committed Nov 8, 2018
1 parent 988b5fe commit 79c5181
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 2.8)

project (hwlib)
set(CMAKE_BUILD_TYPE Release)

add_library(hwlib INTERFACE)
target_include_directories(hwlib INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/library)
target_sources(hwlib INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/library/hwlib.cpp)

0 comments on commit 79c5181

Please sign in to comment.