mods by mikerb Sat Aug 31 09:35:01 EDT 2024
This commit is contained in:
47
src/lib_behaviors-test/CMakeLists.txt
Normal file
47
src/lib_behaviors-test/CMakeLists.txt
Normal file
@@ -0,0 +1,47 @@
|
||||
#--------------------------------------------------------
|
||||
# The CMakeLists.txt for: lib_behaviors-test
|
||||
# Author(s):
|
||||
#--------------------------------------------------------
|
||||
|
||||
# Set System Specific Libraries
|
||||
if (${WIN32})
|
||||
# Windows Libraries
|
||||
SET(SYSTEM_LIBS
|
||||
)
|
||||
else (${WIN32})
|
||||
# Linux and Apple Libraries
|
||||
SET(SYSTEM_LIBS
|
||||
m )
|
||||
endif (${WIN32})
|
||||
|
||||
|
||||
MACRO(ADD_BHV BHV_NAME)
|
||||
ADD_LIBRARY(${BHV_NAME} SHARED ${BHV_NAME}.cpp)
|
||||
TARGET_LINK_LIBRARIES(${BHV_NAME}
|
||||
helmivp
|
||||
behaviors
|
||||
ivpbuild
|
||||
logic
|
||||
ivpcore
|
||||
bhvutil
|
||||
mbutil
|
||||
geometry
|
||||
${SYSTEM_LIBS} )
|
||||
ENDMACRO(ADD_BHV)
|
||||
|
||||
|
||||
#--------------------------------------------------------
|
||||
# BHV_SimpleWaypoint
|
||||
#--------------------------------------------------------
|
||||
ADD_LIBRARY(BHV_SimpleWaypoint SHARED
|
||||
BHV_SimpleWaypoint.cpp AOF_SimpleWaypoint.cpp)
|
||||
TARGET_LINK_LIBRARIES(BHV_SimpleWaypoint
|
||||
helmivp
|
||||
behaviors
|
||||
ivpbuild
|
||||
logic
|
||||
ivpcore
|
||||
bhvutil
|
||||
mbutil
|
||||
geometry
|
||||
${SYSTEM_LIBS} )
|
||||
Reference in New Issue
Block a user