mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-30 20:59:12 +08:00
f2f018271f
Also did minor formating to the bullet3 portfile while using it for comparisson. The version was uncertain so I just used 1.0.
16 lines
401 B
CMake
16 lines
401 B
CMake
CMAKE_MINIMUM_REQUIRED ( VERSION 2.6)
|
|
|
|
add_library (fastlz SHARED fastlz.c )
|
|
|
|
install (TARGETS fastlz DESTINATION
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_PREFIX}/lib
|
|
)
|
|
IF (NOT DEFINED SKIP_INSTALL_HEADERS)
|
|
INSTALL(
|
|
FILES
|
|
fastlz.h
|
|
DESTINATION include
|
|
)
|
|
ENDIF () |