Skip to content

Commit 12df449

Browse files
authored
Merge pull request #916 from openmultiplayer/amir/NPCs
Implement NPCs Component
2 parents 3eb5331 + db325ae commit 12df449

36 files changed

+8076
-25
lines changed

SDK

Server/Components/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ add_subdirectory(TextLabels)
2020
add_subdirectory(Timers)
2121
add_subdirectory(Variables)
2222
add_subdirectory(Vehicles)
23+
add_subdirectory(NPCs)
2324

2425
# Pawn
2526
if(BUILD_PAWN_COMPONENT)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
get_filename_component(ProjectId ${CMAKE_CURRENT_SOURCE_DIR} NAME)
2+
include_directories(${CMAKE_SOURCE_DIR}/lib/cpp-httplib)
3+
add_server_component(${ProjectId})
4+
5+
target_link_libraries(${ProjectId} PRIVATE
6+
CONAN_PKG::ghc-filesystem
7+
)

0 commit comments

Comments
 (0)