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.
18 lines
406 B
18 lines
406 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
include_directories("../../PubUtilLib") |
|
|
|
set(plMath_SOURCES |
|
hsRadixSort.cpp |
|
plTriUtils.cpp |
|
) |
|
|
|
set(plMath_HEADERS |
|
hsRadixSort.h |
|
plTriUtils.h |
|
) |
|
|
|
add_library(plMath STATIC ${plMath_SOURCES} ${plMath_HEADERS}) |
|
|
|
source_group("Source Files" FILES ${plMath_SOURCES}) |
|
source_group("Header Files" FILES ${plMath_HEADERS})
|
|
|