project( FaceColorApp )

file( GLOB lib_srcs "*.cpp" )
source_group( "Source files" FILES ${lib_srcs} )

include_directories( 
	"${LIBXML2_INCLUDES}"
	"${OPENCV_INCLUDES}"
	".."
	"../../utils"
)

file( GLOB lib_int_hdrs "*.h*" )
source_group( "Header files" FILES ${lib_int_hdrs} )

link_directories(
	"${OPENCV_LIBRARIES}"
	"${LIBXML2_LIBRARIES}"
)

set( the_target "FaceColorApp" )

add_executable( ${the_target} ${lib_srcs} ${lib_hdrs} ${lib_int_hdrs} )

target_link_libraries( ${the_target} FaceColor ${LIBXML2_LIBS} ${OPENCV_LIBS} )
