Branan Purvine-Riley
14 years ago
committed by
rarified
4 changed files with 29 additions and 5 deletions
@ -1,4 +1,5 @@
|
||||
add_definitions(-D_LIB) # We shouldn't actually need this here, but |
||||
# Cyan uses it, so meh |
||||
|
||||
add_subdirectory(plClient) |
||||
add_definitions(-D_LIB) # We shouldn't actually need this here, but |
||||
# Cyan uses it, so meh |
||||
|
||||
add_subdirectory(plClient) |
||||
add_subdirectory(plPythonPack) |
||||
|
@ -0,0 +1,19 @@
|
||||
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 ${PYTHON_LIBRARY} CoreLib CoreLibExe plFile) |
||||
|
||||
source_group("Source Files" FILES ${plPythonPack_SOURCES}) |
||||
source_group("Header Files" FILES ${plPythonPack_HEADERS}) |
Loading…
Reference in new issue