mirror of
https://github.com/OpenTrespasser/JurassicParkTrespasser.git
synced 2024-12-19 15:11:57 +00:00
397f9d91ea
CMake: add some missing files
33 lines
868 B
CMake
33 lines
868 B
CMake
project(WinShell)
|
|
|
|
list(APPEND WinShell_Inc
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/AppEvent.hpp
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/AppShell.hpp
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/WinShell.hpp
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/ShellResource.h
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/Resource.h
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/WinEvent.hpp
|
|
)
|
|
|
|
list(APPEND WinShell_Src
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/AppEvent.cpp
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/AppShell.cpp
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/winshell.cpp
|
|
)
|
|
|
|
list(APPEND WinShell_Rsc
|
|
${CMAKE_SOURCE_DIR}/Source/Shell/WinShell.rc
|
|
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/Source
|
|
${CMAKE_SOURCE_DIR}/Source/gblinc
|
|
)
|
|
|
|
add_common_options()
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${WinShell_Inc} ${WinShell_Src} ${WinShell_Rsc} )
|
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES FOLDER Tests)
|