2019-09-23 00:24:10 -07:00
|
|
|
project(halsim_gui)
|
|
|
|
|
|
|
|
|
|
include(CompileWarnings)
|
|
|
|
|
|
|
|
|
|
file(GLOB halsim_gui_src src/main/native/cpp/*.cpp)
|
|
|
|
|
|
|
|
|
|
add_library(halsim_gui MODULE ${halsim_gui_src})
|
|
|
|
|
wpilib_target_warnings(halsim_gui)
|
|
|
|
|
set_target_properties(halsim_gui PROPERTIES DEBUG_POSTFIX "d")
|
2020-04-05 23:09:50 -07:00
|
|
|
target_link_libraries(halsim_gui PUBLIC hal ntcore PRIVATE imgui)
|
2019-09-23 00:24:10 -07:00
|
|
|
|
|
|
|
|
target_include_directories(halsim_gui PRIVATE src/main/native/include)
|
|
|
|
|
|
|
|
|
|
set_property(TARGET halsim_gui PROPERTY FOLDER "libraries")
|
|
|
|
|
|
|
|
|
|
install(TARGETS halsim_gui EXPORT halsim_gui DESTINATION "${main_lib_dest}")
|