You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
include_directories(../../CoreLib)
|
|
|
|
include_directories(../../PubUtilLib)
|
|
|
|
|
|
|
|
include_directories(${PYTHON_INCLUDE_DIR})
|
|
|
|
|
|
|
|
set(plPythonPack_SOURCES
|
|
|
|
main.cpp
|
|
|
|
PythonInterface.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(plPythonPack_HEADERS
|
|
|
|
PythonInterface.h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(plPythonPack ${plPythonPack_SOURCES} ${plPythonPack_HEADERS})
|
|
|
|
target_link_libraries(plPythonPack CoreLib plFile)
|
|
|
|
target_link_libraries(plPythonPack ${PYTHON_LIBRARIES})
|
|
|
|
|
|
|
|
if(USE_VLD)
|
|
|
|
target_link_libraries(plPythonPack ${VLD_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
source_group("Source Files" FILES ${plPythonPack_SOURCES})
|
|
|
|
source_group("Header Files" FILES ${plPythonPack_HEADERS})
|