mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
85cceef2af
In mod_GetRealModuleName() there was error - arguments of mod_FindRealFileNameCaseInsensitive() is misplaced.
18 lines
259 B
CMake
18 lines
259 B
CMake
set(HEADERS
|
|
module.h
|
|
)
|
|
set(CPPS
|
|
module.cpp
|
|
)
|
|
|
|
add_library(module STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(module PRIVATE
|
|
cfile
|
|
ddebug
|
|
logger
|
|
)
|
|
target_include_directories(module PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/module
|
|
>
|
|
) |