mirror of
https://github.com/OpenTrespasser/JurassicParkTrespasser.git
synced 2024-12-19 15:11:57 +00:00
24 lines
559 B
CMake
24 lines
559 B
CMake
project(File)
|
|
|
|
list(APPEND File_Inc
|
|
${CMAKE_SOURCE_DIR}/Source/Lib/File/Image.hpp
|
|
${CMAKE_SOURCE_DIR}/Source/Lib/File/Section.hpp
|
|
${CMAKE_SOURCE_DIR}/Source/Lib/File/Spec.hpp
|
|
)
|
|
|
|
list(APPEND File_Src
|
|
${CMAKE_SOURCE_DIR}/Source/Lib/File/Image.cpp
|
|
${CMAKE_SOURCE_DIR}/Source/Lib/File/Section.cpp
|
|
)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/Source
|
|
${CMAKE_SOURCE_DIR}/Source/gblinc
|
|
)
|
|
|
|
add_common_options()
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${File_Inc} ${File_Src} )
|
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES FOLDER Lib/Util)
|