Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rr/add cmake build and provide handle to platform dependent function #8

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 3.12)

set(DS1307_INCLUDE src CACHE INTERNAL "" FORCE)
file(GLOB_RECURSE DS1307_SOURCES src/*.c)

include_directories(${DS1307_INCLUDE})
add_library(ds1307 STATIC ${DS1307_SOURCES})
target_include_directories(ds1307 SYSTEM PUBLIC ${DS1307_INCLUDE})
Loading