Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit c3d153f

Browse files
authored
Merge pull request #722 from softwareschneiderei/fix_broken_idl_install
Fix broken install path for the tango idl file on windows
2 parents 4791f0d + b174871 commit c3d153f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cppapi/server/idl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ add_library(idl_objects OBJECT ${SOURCES} tango.h)
6868

6969
if(WIN32)
7070
target_compile_definitions(idl_objects PRIVATE "${windows_defs};__x86__;__NT__;__OSVERSION__=4;__WIN32__;_WIN32_WINNT=0x0400;")
71-
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tango.h" DESTINATION include)
71+
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tango.h" DESTINATION include/tango/idl)
7272
else()
7373
target_compile_options(idl_objects PRIVATE -fPIC)
7474
target_compile_definitions(idl_objects PRIVATE OMNI_UNLOADABLE_STUBS)

0 commit comments

Comments
 (0)