summaryrefslogtreecommitdiff
path: root/src/fs/CMakeLists.txt
blob: 4e2d1d6dacc79dafe1767b62d2c9ef74e142496a (plain)
1
2
3
4
5
6
7
8
9
10
11
if(EXTFS_BUILD_STATIC)
  set(LIBRARY_TYPE "STATIC")
else()
  set(LIBRARY_TYPE "SHARED")
endif()

add_library(extfs
  ${LIBRARY_TYPE}
  "extfs.cpp"
  "detail/superblock.cpp"
  )