mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-21 20:53:56 +00:00
24 lines
401 B
CMake
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)
|