~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Mod/Raytracing/Gui/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV
  • Date: 2010-01-11 08:48:33 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100111084833-4g9vgdqbkw8u34zb
Tags: 0.9.2646.5-1
* New upstream version (closes: #561696).
* Added swig to Build-Depends (closes: #563523, #563772).
* Removed python-opencv from Build-Depends and Recommends (closes: #560768).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
if(WIN32)
2
 
else(WIN32)
 
1
if(MSVC)
 
2
         add_definitions(-DHAVE_ACOSH -DHAVE_ATANH -DHAVE_ASINH)
 
3
else(MSVC)
3
4
                 add_definitions(-DHAVE_LIMITS_H -DHAVE_CONFIG_H)
4
 
endif(WIN32)
 
5
endif(MSVC)
5
6
 
6
7
include_directories(
7
8
                 ${CMAKE_SOURCE_DIR}/src
81
82
if(WIN32)
82
83
                 set_target_properties(RaytracingGui PROPERTIES SUFFIX ".pyd")
83
84
                 set_target_properties(RaytracingGui PROPERTIES DEBUG_OUTPUT_NAME "RaytracingGui_d")
 
85
                 set_target_properties(RaytracingGui PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/Raytracing)
 
86
                 set_target_properties(RaytracingGui PROPERTIES PREFIX "../")
84
87
else(WIN32)
 
88
                 set_target_properties(RaytracingGui PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/Raytracing)
85
89
                 set_target_properties(RaytracingGui PROPERTIES PREFIX "")
86
90
endif(WIN32)
87
91