mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
24 lines
566 B
CMake
24 lines
566 B
CMake
add_definitions(-D_LIB)
|
|
|
|
include_directories("../../CoreLib")
|
|
include_directories("../../NucleusLib/inc")
|
|
include_directories("../../NucleusLib")
|
|
include_directories("../../PubUtilLib")
|
|
|
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(plClientPatcher_HEADERS
|
|
Intern.h
|
|
Pch.h
|
|
UruPlayer.h
|
|
)
|
|
|
|
set(plClientPatcher_SOURCES
|
|
UruPlayer.cpp
|
|
)
|
|
|
|
add_library(plClientPatcher STATIC ${plClientPatcher_HEADERS} ${plClientPatcher_SOURCES})
|
|
|
|
source_group("Header Files" FILES ${plClientPatcher_HEADERS})
|
|
source_group("Source Files" FILES ${plClientPatcher_SOURCES})
|