blob: 5b1d7965bfcd6ac50e5e096f4ecfa5710e09766f (
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(gtest)
add_subdirectory(infoware)
add_subdirectory(libpng)
add_subdirectory(ogg)
add_subdirectory(vorbis)
add_subdirectory(zlib)
make_available(gtest infoware libpng ogg vorbis zlib)
add_subdirectory(Opcode)
add_subdirectory(sha1)
add_subdirectory(l3ds)
install(
TARGETS png15 Opcode
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()
|