This repository was archived by the owner on Sep 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22CMakeUserPresets.json
33CMakeFiles
44CMakeCache.txt
5- * .cmake
65/out *
76/.vs *
87/.vscode *
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ if(${PROJECT_SOURCE_DIR} STREQUAL ${PROJECT_BINARY_DIR})
2828endif ()
2929
3030# dependencies
31+ find_package (fmt CONFIG REQUIRED )
3132find_package (spdlog CONFIG REQUIRED )
3233find_package (xbyak CONFIG REQUIRED )
3334
@@ -112,6 +113,7 @@ target_include_directories(
112113target_link_libraries (
113114 ${PROJECT_NAME}
114115 PUBLIC
116+ fmt::fmt-header-only
115117 spdlog::spdlog
116118 xbyak::xbyak
117119 Version .lib
Original file line number Diff line number Diff line change 1+ function (add_commonlibsf_plugin TARGET )
2+ set (options OPTIONAL USE_SIGNATURE_SCANNING)
3+ set (oneValueArgs AUTHOR)
4+ set (multiValueArgs SOURCES)
5+ cmake_parse_arguments (ADD_COMMONLIBSF_PLUGIN "${options} " "${oneValueArgs} " "${multiValueArgs} " )
6+
7+ add_library ("${TARGET} " SHARED ${ADD_COMMONLIBSF_PLUGIN_SOURCES} )
8+
9+ target_link_libraries (${TARGET}
10+ PRIVATE
11+ CommonLibSF::CommonLibSF )
12+ endfunction ()
Original file line number Diff line number Diff line change 11include ("${CMAKE_CURRENT_LIST_DIR} /@PROJECT_NAME@-targets.cmake" )
2+ include ("${CMAKE_CURRENT_LIST_DIR} /@PROJECT_NAME@.cmake" )
23include (CMakeFindDependencyMacro )
34
5+ find_dependency (fmt CONFIG )
46find_dependency (spdlog CONFIG )
57find_dependency (xbyak CONFIG )
You can’t perform that action at this time.
0 commit comments