Skip to content

Commit

Permalink
fix install location
Browse files Browse the repository at this point in the history
Signed-off-by: Cocoa <[email protected]>
  • Loading branch information
cocoa-xu committed Jan 27, 2025
1 parent 0da5cd1 commit 5d9a683
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ if(WIN32)
file(GLOB adbc_dll_loader_sources CONFIGURE_DEPENDS "${C_SRC}/dll_loader/*.cpp")
add_library(adbc_dll_loader SHARED ${adbc_dll_loader_sources})
set_property(TARGET adbc_dll_loader PROPERTY CXX_STANDARD 17)
target_include_directories(adbc_dll_loader PUBLIC $ENV{ERTS_INCLUDE_DIR})
target_include_directories(adbc_dll_loader PUBLIC ${ERTS_INCLUDE_DIR})
install(
TARGETS adbc_dll_loader
DESTINATION "$ENV{PRIV_DIR}"
DESTINATION "${PRIV_DIR}"
)
SET_TARGET_PROPERTIES(adbc_dll_loader PROPERTIES PREFIX "")
endif()
Expand Down

0 comments on commit 5d9a683

Please sign in to comment.