PROJECT(Scheduling) SET(Scheduling_SRC Day.cpp Interval.cpp IntervalPairIterator.cpp Schedule.cpp ScheduleParser.cpp TimePeriod.cpp WorkTime.cpp ) ADD_LIBRARY(scheduling STATIC ${Scheduling_SRC}) TARGET_LINK_LIBRARIES(scheduling concurrency events common boost_date_time) SET_TARGET_PROPERTIES(scheduling PROPERTIES COMPILE_FLAGS -Werror) ADD_SUBDIRECTORY(lua) ADD_SUBDIRECTORY(test)