summaryrefslogtreecommitdiff
path: root/tests/src/Interop/StructMarshalling/PInvoke/CMakeLists.txt
blob: 860c2e8c80b9f1a9e7d2c2559c898a270fd4eca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required (VERSION 2.6)
project (MarshalStructAsParam)
include_directories(${INC_PLATFORM_DIR})
set(SOURCES MarshalStructAsParamDLL.cpp)

# add the executable
add_library (MarshalStructAsParam SHARED ${SOURCES})
target_link_libraries(MarshalStructAsParam ${LINK_LIBRARIES_ADDITIONAL}) 

# add the install targets
install (TARGETS MarshalStructAsParam DESTINATION bin)