mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 06:35:38 +00:00
98120f9ecd
Removed relative paths in #includes. Changed ViewController to a singleton, removing it from the Window class.
14 lines
301 B
CMake
14 lines
301 B
CMake
project("pugixml")
|
|
|
|
set(PUGI_HEADERS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/pugiconfig.hpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/pugixml.hpp
|
|
)
|
|
|
|
set(PUGI_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/src/pugixml.cpp
|
|
)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
add_library(pugixml STATIC ${PUGI_SOURCES} ${PUG_HEADERS})
|