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.
35 lines
975 B
35 lines
975 B
14 years ago
|
include_directories("../")
|
||
|
include_directories("../../Plasma/CoreLib")
|
||
|
include_directories("../../Plasma/FeatureLib")
|
||
|
include_directories("../../Plasma/FeatureLib/inc")
|
||
|
include_directories("../../Plasma/NucleusLib")
|
||
|
include_directories("../../Plasma/NucleusLib/inc")
|
||
|
include_directories("../../Plasma/PubUtilLib")
|
||
|
include_directories("../../Plasma/PubUtilLib/inc")
|
||
|
include_directories(${3dsm_INCLUDE_DIR})
|
||
|
include_directories(${PYTHON_INCLUDE_DIR})
|
||
|
|
||
|
set(MaxExport_HEADERS
|
||
|
plErrorMsg.h
|
||
|
plExportDlg.h
|
||
|
plExportErrorMsg.h
|
||
|
plExportLogErrorMsg.h
|
||
|
plExportProgressBar.h
|
||
|
plProgressBar.h
|
||
|
SimpleExport.h
|
||
|
)
|
||
|
|
||
|
set(MaxExport_SOURCES
|
||
|
plErrorMsg.cpp
|
||
|
plExportDlg.cpp
|
||
|
plExportErrorMsg.cpp
|
||
|
plExportLogErrorMsg.cpp
|
||
|
plExportProgressBar.cpp
|
||
|
SimpleExport.cpp
|
||
|
)
|
||
|
|
||
|
add_library(MaxExport STATIC ${MaxExport_HEADERS} ${MaxExport_SOURCES})
|
||
|
|
||
|
source_group("Header Files" FILES ${MaxExport_HEADERS})
|
||
|
source_group("Source Files" FILES ${MaxExport_SOURCES})
|