[build] ozulis is no more linked to mugiwara
[ozulis.git] / src / core / CMakeLists.txt
blobd92f56a65f9045ddc6d1c56e139a422e92288151
1 SET(CORE_SRCS
2   assert.cc assert.hh
3   id.hh id.hxx
4   process.hh
5   multi-method.hh multi-method.hxx
6   string.cc string.hh
7   )
9 IF(UNIX)
10   SET(CORE_SRCS ${CORE_SRCS} process-unix.cc)
11 ENDIF(UNIX)
13 ADD_LIBRARY(ozulis-core SHARED ${CORE_SRCS})
14 SET_TARGET_PROPERTIES(ozulis-core PROPERTIES VERSION 1.0.0 SOVERSION 1)
15 TARGET_LINK_LIBRARIES(ozulis-core boost_iostreams)
16 INSTALL(TARGETS ozulis-core DESTINATION lib)