30 lines
498 B
CMake
30 lines
498 B
CMake
include_directories(
|
|
${Boost_INCLUDE_DIRS}
|
|
${OCC_INCLUDE_DIR}
|
|
${ZLIB_INCLUDE_DIR}
|
|
${PYTHON_INCLUDE_DIRS}
|
|
${XercesC_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(Start_LIBS
|
|
FreeCADApp
|
|
)
|
|
|
|
SET(Start_SRCS
|
|
AppStart.cpp
|
|
PreCompiled.cpp
|
|
PreCompiled.h
|
|
StartConfiguration.h
|
|
)
|
|
|
|
|
|
|
|
add_library(Start SHARED ${Start_SRCS})
|
|
target_link_libraries(Start ${Start_LIBS})
|
|
|
|
|
|
SET_BIN_DIR(Start Start /Mod/Start)
|
|
SET_PYTHON_PREFIX_SUFFIX(Start)
|
|
|
|
INSTALL(TARGETS Start DESTINATION ${CMAKE_INSTALL_LIBDIR})
|