mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-30 00:01:02 +00:00
- wrapped std::function into utils::optional_function -- cleaned the code accordingly in windows_emulator - using the 'emulator'/'windows_emulator' dependency implies the emulator_common as well.
13 lines
260 B
CMake
13 lines
260 B
CMake
file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
|
|
*.cpp
|
|
*.hpp
|
|
*.rc
|
|
)
|
|
|
|
list(SORT SRC_FILES)
|
|
|
|
add_library(emulator ${SRC_FILES})
|
|
|
|
target_link_libraries(emulator PUBLIC emulator-common)
|
|
target_include_directories(emulator INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
|