|
|
@ -5,9 +5,21 @@ set(NAVMESHTOOL
|
|
|
|
)
|
|
|
|
)
|
|
|
|
source_group(apps\\navmeshtool FILES ${NAVMESHTOOL})
|
|
|
|
source_group(apps\\navmeshtool FILES ${NAVMESHTOOL})
|
|
|
|
|
|
|
|
|
|
|
|
openmw_add_executable(openmw-navmeshtool ${NAVMESHTOOL})
|
|
|
|
add_library(openmw-navmeshtool-lib STATIC
|
|
|
|
|
|
|
|
${NAVMESHTOOL}
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ANDROID)
|
|
|
|
|
|
|
|
add_library(openmw-navmeshtool SHARED
|
|
|
|
|
|
|
|
main.cpp
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
else()
|
|
|
|
|
|
|
|
openmw_add_executable(openmw-navmeshtool ${NAVMESHTOOL})
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
target_link_libraries(openmw-navmeshtool openmw-navmeshtool-lib)
|
|
|
|
|
|
|
|
|
|
|
|
target_link_libraries(openmw-navmeshtool
|
|
|
|
target_link_libraries(openmw-navmeshtool-lib
|
|
|
|
Boost::program_options
|
|
|
|
Boost::program_options
|
|
|
|
components
|
|
|
|
components
|
|
|
|
)
|
|
|
|
)
|
|
|
|