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
374 B
18 lines
374 B
add_definitions(-D_LIB) |
|
|
|
include_directories("../../Plasma/CoreLib") |
|
|
|
set(CoreLibExe_SOURCES |
|
hsExeError.cpp |
|
hsExeMalloc.cpp |
|
) |
|
|
|
set(CoreLibExe_HEADERS |
|
Intern.h |
|
Pch.h |
|
) |
|
|
|
add_library(CoreLibExe STATIC ${CoreLibExe_SOURCES} ${CoreLibExe_HEADERS}) |
|
|
|
source_group("Source Files" FILES ${CoreLibExe_SOURCES}) |
|
source_group("Header Files" FILES ${CoreLibExe_HEADERS})
|
|
|