Skip to content

Commit 9133467

Browse files
authored
Merge pull request #65 from nodece/master
chore: add CMakeLists.txt for support CLion
2 parents 30401b3 + cc3951a commit 9133467

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
project(casbin)
2+
3+
cmake_minimum_required(VERSION 3.16)
4+
5+
set(CMAKE_CXX_STANDARD 11)
6+
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
7+
8+
FILE(GLOB_RECURSE SC_FILES "casbin/*.cpp" "casbin/*.h")
9+
10+
add_library(casbin ${SC_FILES})

0 commit comments

Comments
 (0)