mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
db8aa64d2f
Properly define MEM_USE_RTL definition only for mem library. Link other dependant modules with mem.
12 lines
164 B
CMake
12 lines
164 B
CMake
set(HEADERS)
|
|
|
|
set(CPPS
|
|
CFtp.cpp
|
|
Chttpget.cpp
|
|
inetgetfile.cpp)
|
|
|
|
add_library(inetfile STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(inetfile PRIVATE
|
|
mem
|
|
)
|