Files
windows-user-space-emulator/src/analyzer/CMakeLists.txt
2024-09-24 20:23:42 +02:00

24 lines
401 B
CMake

file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
*.rc
)
list(SORT SRC_FILES)
add_executable(analyzer ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_precompile_headers(analyzer PRIVATE std_include.hpp)
target_link_libraries(analyzer PRIVATE
common
reflect
windows-emulator
)
set_property(GLOBAL PROPERTY VS_STARTUP_PROJECT analyzer)
momo_strip_target(analyzer)