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

« back to all changes in this revision

Viewing changes to src/Mod/Points/App/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
1
if(WIN32)
2
 
                 add_definitions(-DFCAppPoints -DFC_DEBUG)
 
2
                 add_definitions(-DFCAppPoints)
3
3
endif(WIN32)
4
4
 
5
5
include_directories(
 
6
                 ${CMAKE_CURRENT_BINARY_DIR}
6
7
                 ${CMAKE_CURRENT_SOURCE_DIR}
7
 
                 ${CMAKE_SOURCE_DIR}/src
8
8
                 ${Boost_INCLUDE_DIRS}
9
9
                 ${PYTHON_INCLUDE_PATH}
10
10
                 ${XERCES_INCLUDE_DIR}
51
51
if(WIN32)
52
52
                 set_target_properties(Points PROPERTIES SUFFIX ".pyd")
53
53
                 set_target_properties(Points PROPERTIES DEBUG_OUTPUT_NAME "Points_d")
 
54
                 set_target_properties(Points PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/Points)
 
55
                 set_target_properties(Points PROPERTIES PREFIX "../")
54
56
else(WIN32)
 
57
                 set_target_properties(Points PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/Mod/Points)
55
58
                 set_target_properties(Points PROPERTIES PREFIX "")
56
59
endif(WIN32)
57
60