From: bruneton Date: Mon, 28 Oct 2013 10:16:26 +0000 (+0000) Subject: CMake: fixing omniidl detection under Win32 X-Git-Tag: BR_hydro_v_0_3_1~54 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=02809ef41e5ac264479bf3dccf6449252bcf7dff;p=modules%2Fkernel.git CMake: fixing omniidl detection under Win32 --- diff --git a/salome_adm/cmake_files/FindOmniORB.cmake b/salome_adm/cmake_files/FindOmniORB.cmake index 0cff11b99..e0924769b 100644 --- a/salome_adm/cmake_files/FindOmniORB.cmake +++ b/salome_adm/cmake_files/FindOmniORB.cmake @@ -94,10 +94,12 @@ ENDIF (WIN32) ############################################################################## IF (WIN32) FIND_PROGRAM( OMNIORB_IDL_COMPILER - NAMES omniidl PATHS bin/x86_win32 + NAMES omniidl + PATH_SUFFIXES x86_win32 DOC "What is the path where omniidl (the idl compiler) can be found") FIND_PROGRAM( OMNIORB_OMNINAMES_COMMAND - NAMES omniNames PATHS bin/x86_win32 + NAMES omniNames + PATH_SUFFIXES x86_win32 DOC "What is the path where omniNames (the ORB server) can be found") ELSE(WIN32) FIND_PROGRAM(OMNIORB_IDL_COMPILER NAMES omniidl)