project (PInvokePassingByRefNative)
include ("${CLR_INTEROP_TEST_ROOT}/Interop.cmake")
include_directories("..")
set(SOURCES
    PInvokePassingByRefNative.cpp
)
# add the executable
add_library (PInvokePassingByRefNative SHARED ${SOURCES})
target_link_libraries(PInvokePassingByRefNative PRIVATE ${LINK_LIBRARIES_ADDITIONAL})
# add the install targets
install (TARGETS PInvokePassingByRefNative DESTINATION bin)
