Files @ c4181a9c48be
Branch filter:

Location: libtransport.git/backends/CMakeLists.txt

Jan Kaluza
Disable the compiler warning for deprecated boost::signals usage (#63). We cannot use boost::signals2 right now, because Swiften is not going to use it in the version 3.x.y.
if (PROTOBUF_FOUND)
	if (PURPLE_FOUND)
		ADD_SUBDIRECTORY(libpurple)
	endif()

	if (IRC_FOUND)
		ADD_SUBDIRECTORY(libcommuni)
	endif()

	if (ENABLE_SWIFTEN)
		ADD_SUBDIRECTORY(swiften)
	endif()

	ADD_SUBDIRECTORY(template)
	if(ENABLE_TWITTER)
		ADD_SUBDIRECTORY(twitter)
	endif()
	if (NOT WIN32)
		if(ENABLE_SMSTOOLS3)
			ADD_SUBDIRECTORY(smstools3)
		endif()
		if(ENABLE_FROTZ)
			ADD_SUBDIRECTORY(frotz)
		endif()
		if (${LIBDBUSGLIB_FOUND})
			ADD_SUBDIRECTORY(skype)
		endif()
	endif()
endif()