1
0
Files
libcmo21/Ballance/BMapInspector/CMakeLists.txt

40 lines
633 B
CMake

# Create executable
add_executable(BMapInspector "")
# Setup sources
target_sources(BMapInspector
PRIVATE
BMapInspector.cpp
Utils.cpp
Reporter.cpp
Cli.cpp
Map.cpp
Rule.cpp
)
# Setup headers
target_sources(BMapInspector
PRIVATE
FILE_SET HEADERS
FILES
Utils.hpp
Reporter.hpp
Cli.hpp
Map.hpp
Rule.hpp
)
# Setup header infomation
target_include_directories(BMapInspector
PRIVATE
"${CMAKE_CURRENT_LIST_DIR}"
)
# Setup linked library infomation
target_link_libraries(BMapInspector
PRIVATE
YYCC::YYCCommonplace
LibCmo
)
# Install BMapInspector
install(TARGETS BMapInspector
RUNTIME DESTINATION ${YYCC_INSTALL_BIN_PATH}
)