summaryrefslogtreecommitdiffhomepage
path: root/contrib/CMakeLists.txt
blob: 138dc01a30a47e76e34f4fc9b07729e0c3d5ac74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
include(ApplyPatch)
include(FetchContent)
include(MakeAvailable)
add_subdirectory(libpng)
add_subdirectory(zlib)
make_available(zlib libpng)
add_library(Png::png ALIAS png15)
add_subdirectory(ogg)
add_subdirectory(Opcode)
add_subdirectory(sha1)
add_subdirectory(vorbis)
get_target_property(LIBB_INCLUDES Png::png INCLUDE_DIRECTORIES)
message(STATUS "PNG includes: ${LIBB_INCLUDES}")
install(
	TARGETS png15 Opcode zlib
	RUNTIME
	COMPONENT Runtime
	DESTINATION ${CMAKE_INSTALL_PREFIX}
	)
if(NOT MSVC)
	foreach(LIB IN ITEMS "libstdc++-6.dll" "libwinpthread-1.dll" "libgcc_s_dw2-1.dll")
		find_file(LIBRARY_${LIB} ${LIB} PATHS ${CMAKE_FIND_ROOT_PATH}/bin)
		if(LIBRARY_${LIB})
			install(
				PROGRAMS ${LIBRARY_${LIB}}
				COMPONENT Runtime
				DESTINATION ${CMAKE_INSTALL_PREFIX}
				)
		endif()
	endforeach()
endif()