Skip to content

Commit

Permalink
CMake adjustments for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
josehu07 committed Oct 13, 2021
1 parent b8b61a8 commit 897282c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
cmake_minimum_required(VERSION 3.17)
cmake_minimum_required(VERSION 3.16)
project(uLayFS)

set(CMAKE_CXX_STANDARD 17)

add_library(ulayfs SHARED src/lib.cpp)
target_link_libraries(ulayfs dl)

add_executable(basic_test test/basic.c)
target_link_libraries(basic_test ulayfs)

0 comments on commit 897282c

Please sign in to comment.