Files
windows-user-space-emulator/src/emulator/CMakeLists.txt
Elias Bachaalany 5bf325c77f some refactoring with optional_function
- 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.
2025-01-21 19:25:51 -08:00

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}")