mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
00389c50ea
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
25 lines
364 B
CMake
25 lines
364 B
CMake
set(HEADERS
|
|
doorpage.h
|
|
gamefilepage.h
|
|
genericpage.h
|
|
megapage.h
|
|
powerpage.h
|
|
robotpage.h
|
|
shippage.h
|
|
soundpage.h
|
|
texpage.h
|
|
weaponpage.h)
|
|
set(CPPS
|
|
doorpage.cpp
|
|
gamefilepage.cpp
|
|
generic.cpp
|
|
manage.cpp
|
|
megapage.cpp
|
|
pagelock.cpp
|
|
shippage.cpp
|
|
soundpage.cpp
|
|
texpage.cpp
|
|
weaponpage.cpp)
|
|
|
|
add_library(manage STATIC ${HEADERS} ${CPPS})
|