Re: [CMake] INSTALL_INTERFACE question

2013-04-10 Thread clin...@elemtech.com
Yeah, that's it.  Thanks.  That page was referenced by a recent  kitware blog.

 http://www.kitware.com/blog/home/post/462

Clint

- Reply message -
From: Stephen Kelly steve...@gmail.com
Date: Wed, Apr 10, 2013 1:08 am
Subject: [CMake] INSTALL_INTERFACE question
To: cmake@cmake.org

Stephen Kelly wrote:

 Where did you see the
 example above? In an old commit message? It doesn't seem to be in the
 code:

Ah, I found and fixed it on the wiki page:  

 http://community.kde.org/Frameworks/Epics/CMake_target_usage_requirements

Thanks,

Steve.

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [cmake-developers] Qt4Targets test failure

2013-04-05 Thread clin...@elemtech.com
Yes, on Windows, you need both debug and release Qt libraries, if you want to 
build your code both debug and release.

Clint

- Reply message -
From: David Cole dlrd...@aol.com
Date: Fri, Apr 5, 2013 5:19 am
Subject: [cmake-developers] Qt4Targets test failure
To: cmake-developers@cmake.org

Hello CMake devs,

I have a machine where the Qt4Targets test fails like this for a Debug 
dashboard of CMake:

http://open.cdash.org/testDetails.php?test=184197265build=2866114

It fails because the Qt libraries on this machine are only built in 
Release mode and there are no Debug Qt libs here...

The question is: are Release *and* Debug Qt libraries *required* for 
running a CMake dashboard, or should this test pass anyhow despite 
being built in Debug and having only Release Qt libs around...?


Thanks,
D

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers

Re: [CMake] Add Custom COmmand and CMAKE_CFG_INTDIR

2012-01-04 Thread clin...@elemtech.com
Have you tried excluding the .exe thing?  I thought cmake did the right thing 
for targets used in custom commands.

Clint

- Reply message -
From: Michael Jackson mike.jack...@bluequartz.net
Date: Wed, Jan 4, 2012 1:28 pm
Subject: [CMake] Add Custom COmmand and CMAKE_CFG_INTDIR
To: cmake@cmake.org List cmake@cmake.org

I am having trouble getting add_custom_Command and CMAKE_CFG_INTDIR to work 
correctly together. This is what I have so far.

# -- Setup output Directories -
SET (CMAKE_LIBRARY_OUTPUT_DIRECTORY
  ${PROJECT_BINARY_DIR}/Bin
  CACHE PATH
  Single Directory for all Libraries
  )

# Create our custom executable that will generate most of our QFilterWidget
# classes from information stored in the Filters themselves.   
configure_file( ${FilterWidgets_SOURCE_DIR}/CodeGen.cpp.in
${FilterWidgets_BINARY_DIR}/FilterWidgetCodeGen.cpp)
add_executable(FilterWidgetCodeGen 
${FilterWidgets_BINARY_DIR}/FilterWidgetCodeGen.cpp)
target_link_libraries(FilterWidgetCodeGen MXA EbsdLib DREAM3DLib)
set(EXE_EXTENSION )
if (WIN32)
  set (EXE_EXTENSION .exe)
endif()
# Now run the code to generate the header files which will over write the place
# holder files that were generated from above  
add_custom_command(TARGET FilterWidgetCodeGen POST_BUILD 
COMMAND FilterWidgetCodeGen${EXE_EXTENSION} 
WORKING_DIRECTORY ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})


I know this is going to fail on visual studio, which it did. The issue is, what 
combination of CMAKE_CFG_INTDIR and anything else do I use to get this to work?

Thanks
___
Mike JacksonPrincipal Software Engineer
BlueQuartz SoftwareDayton, Ohio
mike.jack...@bluequartz.net  www.bluequartz.net

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread clin...@elemtech.com
There isn't a lock.

Synchronization is done by threads having event loops and calling Qt slots in a 
queued fashion (like posting messages to the other event queue).

I imagine you just need to add another place where the interrupt is checked and 
gracefully return (which should take you back to the event loop).

Clint

- Reply message -
From: Robert Dailey rcdai...@gmail.com
Date: Fri, Dec 30, 2011 10:07 am
Subject: [CMake] Interrupt problems in cmake-gui
To: CMake ML cmake@cmake.org

--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] CMake QT4 toolbar icons disappear

2011-07-28 Thread clin...@elemtech.com
Sounds like your icons are in a format supported by a plugin, and the 
installation has missing that plugin.

Clint

- Reply message -
From: James Sutherland james.sutherl...@utah.edu
Date: Thu, Jul 28, 2011 8:01 pm
Subject: [CMake] CMake QT4 toolbar icons disappear
To: cmake cmake@cmake.org

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] How pass a -spec parameter to FindQt4.cmake?

2011-07-18 Thread clin...@elemtech.com
What version of cmake are you using? And since you are cross-compiling, what 
does your toolchain file for cmake look like?  Did you add a find path in that 
file for your powerpc libs?
The spec file only applies on qmake generated makefiles, which is not happening 
when using cmake.
And you do not need to build your own qmake.

Clint

- Reply message -
From: Daniel Näslund dan...@dannas.name
Date: Mon, Jul 18, 2011 12:12 am
Subject: [CMake] How pass a -spec parameter to FindQt4.cmake?
To: cmake@cmake.org

Hi!

I'm trying to cross-compile a Qt-application for the powerpc platform.
CMake looks for the Qt libraries in the wrong place - it finds the host
libraries instead of the target libraries:

Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_LIBS as /usr/lib
Warning: But QtCore couldn't be found.  Qt must NOT be installed
correctly, or it wasn't found for cross compiling.
CMake Error at /usr/share/cmake-2.8/Modules/FindQt4.cmake:642 (MESSAGE):
  Could NOT find QtCore.  Check /tmp/tmp8VJ3jw/CMakeFiles/CMakeError.log for
  more details.
Call Stack (most recent call first):
  CMakeLists.txt:60 (find_package)

My powerpc libs are located in /opt/env/ppc/usr/lib.

When I read FindQt4.cmake I see that CMake uses QMake for finding out
where the Qt libs reside using qmake -query.

Is there an easy way to let CMake tell QMake about what platform we want
to build for? I've tried...

...Using an environment variable
$ QMAKESPEC=qws/linux-powerpc-g++ cmake

...Using a shell wrappper
$ cat END  ~/bin/qmake
#!/bin/sh

qmake -spec qws/linux-ppc-g++ -query $*
END
$ cmake

The environment variable didn't make any difference and the shell wrapper
failed since qmake didn't allow the -spec and -query flag to be passed
simultaneously.

All of the three resources below suggests that compiling my own version
of qmake is the way to go but to me it sounds a bit counter-intuitive;
why would cmake not allow me to pass a -spec parameter to qmake?

http://www.linuxjournal.com/content/cross-compiling-qt
http://www.cmake.org/pipermail/cmake/2010-June/037239.html
http://www.trinitydesktop.org/docs/qt4/qt-embedded-crosscompiling.html

--

Thanks,
Daniel Näslund
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] How pass a -spec parameter to FindQt4.cmake?

2011-07-18 Thread clin...@elemtech.com
When cross compiling, only some the qmake queries are actually used.  

Finding the rest just works if subdirs in the Qt installation weren't given 
different values when running Qt's configure script (e.g. --libdir=mylib or 
--libdir=lib/qt4).

So, the root of the Qt installation needs to be given in the toolchain file.  
Is /opt/env/lenny-ppc/usr/lib/qt4 the root of the installation, or the location 
of the libraries?  In either case, it won't be searched unless you put that in 
your toolchain file.  The standard cross compile find variables are the global 
variables you can setto help find Qt.

Then, if you need to help it some more, you may set the path to the QtCore 
library manually, or other variables manually.

If lib/qt4 is another path that should be searched automatically, let us know, 
and we can add it to FindQt4.cmake.

Clint

- Reply message -
From: Daniel Näslund dan...@dannas.name
Date: Mon, Jul 18, 2011 11:50 am
Subject: [CMake] How pass a -spec parameter to FindQt4.cmake?
To: clin...@elemtech.com clin...@elemtech.com
Cc: cmake@cmake.org


On Mon, Jul 18, 2011 at 07:23:26AM -0700, clin...@elemtech.com wrote:
 What version of cmake are you using? 

$ cmake --version
cmake version 2.8.4

 And since you are cross-compiling, what does your toolchain file for
 cmake look like?  

The contents of my toolchain.cmake file:

set(CMAKE_SYSTEM_NAME Linux)
set(CROSSPREFIX /opt/crosstool/gcc-4.2.0-glibc-2.5/powerpc-603-linux-gnu)

set(CMAKE_C_COMPILER   ${CROSSPREFIX}/bin/powerpc-603-linux-gnu-gcc)
set(CMAKE_CXX_COMPILER ${CROSSPREFIX}/bin/powerpc-603-linux-gnu-g++)
set(CMAKE_LINKER   ${CROSSPREFIX}/bin/powerpc-603-linux-gnu-ld)

set(CMAKE_FIND_ROOT_PATH ${CROSSPREFIX}/lib
 /opt/env/lenny-ppc/lib
 /opt/env/lenny-ppc/usr/lib)

set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)

The part of my CMakeLists.txt that tries to find a Qt installation:

if (USE_QT)
message(STATUS Build support for QT is enabled.)
find_package(Qt4 4.4 COMPONENTS QtCore QtDbus REQUIRED)
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} -DHAS_QT)
include(${QT_USE_FILE})
else()
message(STATUS Build support for QT is disabled.)
endif (HAS_QT)

 Did you add a find path in that file for your powerpc libs?  

Since the libs are located in /opt/env/lenny-ppc/usr/lib/qt4 I expect
that this line taken from the toolchain file above is sufficient:

set(CMAKE_FIND_ROOT_PATH ${CROSSPREFIX}/lib
 /opt/env/lenny-ppc/lib
 /opt/env/lenny-ppc/usr/lib)

 The spec file only applies on qmake generated makefiles, which is not
 happening when using cmake.  

Ah, 

 And you do not need to build your own qmake.

Ok. But I don't see how I can make qmake return the right information.
Here's the function in FindQt4.cmake that is used for querying qmake:

function(_QT4_QUERY_QMAKE VAR RESULT)
  exec_program(${QT_QMAKE_EXECUTABLE} ARGS -query ${VAR} RETURN_VALUE 
return_code OUTPUT_VARIABLE output )
  if(NOT return_code)
file(TO_CMAKE_PATH ${output} output)
set(${RESULT} ${output} PARENT_SCOPE)
  endif(NOT return_code)
endfunction(_QT4_QUERY_QMAKE)

I don't see anywhere that it relies upon some variable that I can change
in order to have it point at the target Qt4 installation. Is there some
global variable involved for setting the base directory or something
similar?

Daniel
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [cmake-developers] Adding CheckCXXSymbolsExists.cmake ?

2011-07-06 Thread clin...@elemtech.com
Sounds good.  Technically, FindQt4 needs that too, in case users disable the C 
compiler.

Clint

- Reply message -
From: Alexander Neundorf neund...@kde.org
Date: Wed, Jul 6, 2011 1:32 pm
Subject: [cmake-developers] Adding CheckCXXSymbolsExists.cmake ?
To: cmake-developers@cmake.org

Hi,

cmake has a CHECK_SYMBOL_EXISTS() macro for testing whether a symbol exists in 
a header /library.

In KDE we have a slightly modified version of this, CHECK_CXX_SYMBOL_EXISTS(), 
which basically does the same, but using C++, so C++ headers can be checked.

I'd like to add that to cmake.
Any objections ?

Alex
___
cmake-developers mailing list
cmake-developers@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers
___
cmake-developers mailing list
cmake-developers@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers


Re: [CMake] BundleUtilities with MinGW under Windows

2011-05-20 Thread clin...@elemtech.com
Ah,  ok.  You can see related warnings if you run cpack with -V option to make 
it verbose.

Clint

- Reply message -
From: NoRulez noru...@me.com
Date: Fri, May 20, 2011 1:40 pm
Subject: AW: [CMake] BundleUtilities with MinGW under Windows
To: 'Clinton Stimpson' clin...@elemtech.com
Cc: 'CMake MailingList' cmake@cmake.org


For the QtTest example I get the following error:

CPack: Create package using NSIS
CPack: Install projects
CPack: - Run preinstall target for: QtTest
CPack: - Install project: QtTest
CMake Error at C:/Program Files (x86)/CMake 
2.8/share/cmake-2.8/Modules/BundleUtilities.cmake:657 (message):
  error: fixup_bundle: not a valid bundle
Call Stack (most recent call first):
  C:/Repository/Git/TestProject/build/cmake_install.cmake:45 (fixup_bundle)


CPack Error: Error when generating package: QtTest

-Ursprüngliche Nachricht-
Von: Clinton Stimpson [mailto:clin...@elemtech.com] 
Gesendet: Freitag, 20. Mai 2011 18:47
An: NoRulez
Cc: CMake MailingList
Betreff: Re: [CMake] BundleUtilities with MinGW under Windows


The term bundle is used loosely here.  The error message hopefully tell you 
why it isn't valid, or you could give us the complete error message you are 
getting.

Clint

On Friday, May 20, 2011 10:29:16 am NoRulez wrote:
 I get the message that the generated file (e.g Project.exe on Windows)
 isn't a valid Bundle, which is correct because bundle files exists only on
 Mac.
 
 Am 19.05.2011 um 16:39 schrieb clin...@elemtech.com:
  And what error messages are you getting?
  
  Clint
  
  - Original Message -
  
  Sorry for the missing information.
  I use CMake 2.8.4 and have also Visual Studio 2008 installed.
  
  
  Best Regards
  
  Am 19.05.2011 um 05:52 schrieb Clinton Stimpson 
  clin...@elemtech.com :
  
  
  
  
  
  
  
  
  What version of cmake?  I don't think that QtTest example worked until
  CMake 2.8.3.
  
  
  And you have dumpbin available on Windows from a Visual Studio
  installation?
  It might be nice to add support for mingw's objdump tool to find
  dependent dlls.
  
  
  Clint
  
  
  On May 14, 2011, at 7:48 AM, NoRulez wrote:
  
  
  
  
  
  Hi @all,
  
  does anyone get BundleUtilities working on Windows and could give me
  help?
  I tried BundleUtilities under Windows, but the Qt dll’s (such as
  QtGui4.dll, …) and the MinGW dll’s (mingwm10.dll and
  libgcc_s_dw2-1.dll) are not packaged.
  
  I also tried the following, but same problem here:
  http://www.vtk.org/Wiki/images/2/25/QtTest-Package-Example.zip
  
  The following example does also not work on linux
  
  Much thanks in advance
  
  Best Regards
  NoRulez
  
   ___
  
  Powered by   www.kitware.com
  
  Visit other Kitware open-source projects at
  http://www.kitware.com/opensource/opensource.html
  
  Please keep messages on-topic and check the CMake FAQ at:
  http://www.cmake.org/Wiki/CMake_FAQ
  
  Follow this link to subscribe/unsubscribe:
  http://www.cmake.org/mailman/listinfo/cmake
  
  
  
  ___
  Powered by www.kitware.com
  
  Visit other Kitware open-source projects at
  http://www.kitware.com/opensource/opensource.html
  
  Please keep messages on-topic and check the CMake FAQ at:
  http://www.cmake.org/Wiki/CMake_FAQ
  
  Follow this link to subscribe/unsubscribe:
  http://www.cmake.org/mailman/listinfo/cmake
  
  ___
  Powered by www.kitware.com
  
  Visit other Kitware open-source projects at
  http://www.kitware.com/opensource/opensource.html
  
  Please keep messages on-topic and check the CMake FAQ at:
  http://www.cmake.org/Wiki/CMake_FAQ
  
  Follow this link to subscribe/unsubscribe:
  http://www.cmake.org/mailman/listinfo/cmake

-- 
Clinton Stimpson
Elemental Technologies, Inc
Computational Simulation Software, LLC
www.csimsoft.com

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] How do you go about building the cmake-gui from source in 2.8.4?

2011-05-12 Thread clin...@elemtech.com
It is under Source/QtDialog and the cmake option has QtDialog in its name.

Clint

- Reply message -
From: Dick Munroe mun...@csworks.com
Date: Thu, May 12, 2011 11:07 am
Subject: [CMake] How do you go about building the cmake-gui from source in  
2.8.4?
To: cmake@cmake.org

The title pretty much says it all.  I can't find anything obvious in the 
source tree and I want to rebuild cmake-gui for windows.

tia,

Dick Munroe
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] BundleUtilities Error between 2.8.3 and 2.8.4

2011-03-30 Thread clin...@elemtech.com
I think you are running into an error message introduced with this commit.
cmake.org/gitweb?p=cmake.git;a=commit;h=c2895f48a4e79af49937b9e6a260076440b1a67a
You can read about the change which was to prevent problems.
Does it not apply to you and its being too restrictive?

Clint

- Reply message -
From: Michael Jackson mike.jack...@bluequartz.net
Date: Wed, Mar 30, 2011 4:50 pm
Subject: [CMake] BundleUtilities Error between 2.8.3 and 2.8.4
To: CMake ML cmake@cmake.org

Were there any major changes to the BundleUtilities.cmake file between 2.8.3 
and 2.8.4? I have a project that installs just fine when running against CMake 
2.8.3 but when using CMake 2.8.4 it errors out somewhere in BundleUtilities. I 
was wondering if there were any major changes to that file that would have 
caused issues when I upgraded. 

OS X 10.6.7, CMake 2.8.3 Xcode 3.2.x tool set.

Here is the output from the make install
-- # Starting OS X Tool Fixup --
-- fixup_bundle
--   app='/Users/Shared/Toolkits/emmpm/tools/emmpm_debug'
--   libs=''
--   
dirs='/Users/mjackson/Workspace/EIM-emmpm/Build/Bin;/Users/mjackson/Workspace/EIM-emmpm/Build/Bin'
-- fixup_bundle: preparing...
-- fixup_bundle: copying...
-- 1/6: *NOT* copying '/Users/Shared/Toolkits/emmpm/tools/emmpm_debug'
-- 2/6: copying '/Users/Shared/Toolkits/tiff/lib/libtiff_debug.dylib'
-- 3/6: copying 
'/Users/mjackson/Workspace/EIM-emmpm/Build/Bin/libEMMPMLib_debug.dylib'
-- fixup_bundle: fixing...
-- 4/6: fixing up '/Users/Shared/Toolkits/emmpm/tools/emmpm_debug'
  exe_dotapp_dir/='/Users/Shared/Toolkits/emmpm/tools.app/'
  item_substring='/Users/Shared/Toolkits/emmpm/tools/emmp'
  resolved_embedded_item='/Users/Shared/Toolkits/emmpm/tools/emmpm_debug'

Install or copy the item into the bundle before calling fixup_bundle

CMake Error at 
/Users/Shared/Toolkits/CMake-2.8.4/CMake-2.8.4.app/Contents/share/cmake-2.8/Modules/BundleUtilities.cmake:557
 (message):
  cannot fixup an item that is not in the bundle...
Call Stack (most recent call first):
  
/Users/Shared/Toolkits/CMake-2.8.4/CMake-2.8.4.app/Contents/share/cmake-2.8/Modules/BundleUtilities.cmake:645
 (fixup_bundle_item)
  apps/OSX_Scripts/emmpm_CompleteBundle.cmake:86 (fixup_bundle)
  apps/cmake_install.cmake:44 (INCLUDE)
  cmake_install.cmake:33 (INCLUDE)


The library (EMMPMLib) is located in 
/Users/mjackson/Workspace/EIM-emmpm/Build/Bin and the executable is located in 
/Users/Shared/Toolkits/emmpm/tools/ with a name of emmpm_debug. Note that 
emmpm_debug is a command line application and NOT an actual .app bundle.

Then source to the project is located at http://scm.bluequartz.net/eim/emmpm


Thanks
___
Mike Jackson  www.bluequartz.net
Principal Software Engineer   mike.jack...@bluequartz.net 
BlueQuartz Software   Dayton, Ohio

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] CPack and OpenSSL libraries

2011-02-15 Thread clin...@elemtech.com
Yeah, Qt uses them as plugins by default so BundleUtilities won't pick it up.  
You could also copy it manually like other Qt plugins, or configure Qt with the 
-openssl-link flag so it can copy the library for you.

Clint

- Reply message -
From: Crni Gorac cgo...@gmail.com
Date: Tue, Feb 15, 2011 3:38 pm
Subject: [CMake] CPack and OpenSSL libraries
To: cmake@cmake.org

Am using CPack to create Windows and Mac installers for an
application.  The application is Qt based, and BundleUtilities is
working great for me to pick up dependencies and such.  However, I
have problem that OpenSSL libraries, which are needed for some
segments of functionality of my app, are not picked up.  I guess Qt
network module is using these libraries as plugins, which means it is
checking in run time are libraries present on the target system or
not, and is loading them dynamically if so.  I have no problems with
my Mac installer in that regard, as it seems on Mac machines OpenSSL
libraries are installed by default, so my application is able to pick
them up at run time.  However, for the Windows installer, I'll guess
I'll have to pick them somehow.  So I was just wondering has anyone
encountered this problem so far, and what would be preferred solution
with CMake/CPack (to utilize FindOpenSSL.cmake and then explicitly
link my app with OpenSSL libraries, or maybe something else)?

Thanks.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake