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.
22 lines
644 B
22 lines
644 B
include_directories("../../Apps") |
|
include_directories("../../CoreLib") |
|
include_directories("../../FeatureLib/inc") |
|
include_directories("../../FeatureLib") |
|
include_directories("../../NucleusLib/inc") |
|
include_directories("../../NucleusLib") |
|
include_directories("../../PubUtilLib/inc") |
|
include_directories("../../PubUtilLib") |
|
|
|
set(plPageInfo_SOURCES |
|
plAllCreatables.cpp |
|
plPageInfo.cpp |
|
) |
|
|
|
add_executable(plPageInfo ${plPageInfo_SOURCES}) |
|
target_link_libraries(plPageInfo CoreLib plResMgr plAudioCore pnUUID) |
|
|
|
if(USE_VLD) |
|
target_link_libraries(plPageInfo ${VLD_LIBRARY}) |
|
endif() |
|
|
|
source_group("Source Files" FILES ${plPageInfo_SOURCES})
|
|
|